mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
25 lines
474 B
SCSS
25 lines
474 B
SCSS
@import 'flow';
|
|
@import 'sequenceDiagram';
|
|
@import 'gantt';
|
|
@import 'classDiagram';
|
|
@import 'gitGraph';
|
|
|
|
.node text {
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
font-size: 14px;
|
|
}
|
|
|
|
div.mermaidTooltip {
|
|
position: absolute;
|
|
text-align: center;
|
|
max-width: 200px;
|
|
padding: 2px;
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
font-size: 12px;
|
|
background: $secondBkg;
|
|
border: 1px solid $border2;
|
|
border-radius: 2px;
|
|
pointer-events: none;
|
|
z-index: 100;
|
|
}
|