We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to draw a flowchart and using mermaid.forest.css stylesheet. Flowcharts look beautiful without bootstrap.css:
mermaid.forest.css
bootstrap.css
But if I include stylesheet /bootstrap/css/bootstrap.css text looks small and ugly, lables and edges don't show html tags:
/bootstrap/css/bootstrap.css
Can I use mermaid along with bootstrap 3?
bootstrap 3
The text was updated successfully, but these errors were encountered:
The only styling applied by mermaid for lables are the color. SO other styles applied by bootstrap would then kick in.
If you want other styling for the labels you can apply more specific styles for the label via css:
.mermaid .label { color:#333 /* Other styling here */ }
I hope this helps.
Sorry, something went wrong.
bootstrap overrides/sets A LOT of defaults!
Latest version of mermaid scope all of its own CSS in chart ID. If you can still reproduce it, create a new issue. Thanks.
No branches or pull requests
I am trying to draw a flowchart and using
mermaid.forest.css
stylesheet. Flowcharts look beautiful withoutbootstrap.css
:But if I include stylesheet
/bootstrap/css/bootstrap.css
text looks small and ugly, lables and edges don't show html tags:Can I use mermaid along with
bootstrap 3
?The text was updated successfully, but these errors were encountered: