blog/sass/_graph.scss

21 lines
349 B
SCSS
Raw Normal View History

2020-02-12 06:21:08 +00:00
.graphviz {
2020-02-12 07:40:16 +00:00
svg {
max-width: 100%;
width: 100%;
2020-02-12 06:21:08 +00:00
2020-02-12 07:40:16 +00:00
.graph.default-coloring {
ellipse, path, polygon {
stroke: $text-color;
}
text {
fill: $text-color;
}
2020-02-12 06:21:08 +00:00
2020-02-12 07:40:16 +00:00
* {
font-family: $sansfont;
}
2020-02-12 06:21:08 +00:00
}
}
}