mermaid/src/themes/forest/mermaid.scss

24 lines
486 B
SCSS
Raw Normal View History

@import "variables";
2018-03-11 17:26:55 +08:00
@import "../flow";
@import "../sequenceDiagram";
@import "../gantt";
@import "../classDiagram";
2015-12-27 15:57:11 +01:00
.node text {
font-family: 'trebuchet ms', verdana, arial;
2017-04-22 20:37:43 +08:00
font-size: 14px;
}
div.mermaidTooltip {
position: absolute;
text-align: center;
max-width: 200px;
padding: 2px;
font-family: 'trebuchet ms', verdana, arial;
font-size: 12px;
2018-03-09 16:23:35 +08:00
background: $secondBkg;
border: 1px solid $border2;
border-radius: 2px;
pointer-events: none;
2017-04-22 20:37:43 +08:00
z-index: 100;
2017-04-22 20:26:53 +08:00
}