fix graph overflow

This commit is contained in:
Cloudburst 2022-09-01 19:34:29 +02:00 committed by GitHub
parent ab158db7f1
commit cb84fe0bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ module.exports = {
options: {
plugins: [
'gatsby-remark-smartypants',
{ resolve: 'gatsby-remark-mermaid', options: { theme: "dark", } },
{ resolve: 'gatsby-remark-mermaid', options: { theme: "dark", mermaidOptions: { themeCSS: ".mermaid foreignObject {overflow: visible;}" } } },
{ resolve: 'gatsby-remark-prismjs', options: { showLineNumbers: false, } },
]
}
@ -28,4 +28,4 @@ module.exports = {
{ resolve: 'gatsby-plugin-manifest', options: require("./manifest") },
{ resolve: 'gatsby-plugin-canonical-urls', options: { siteUrl: require("./metadata").siteUrl } },
]
};
};