blog/sass/_graph.scss

23 lines
373 B
SCSS
Raw Normal View History

2020-02-12 06:21:08 +00:00
.graphviz {
2020-02-18 01:04:27 +00:00
margin: 24px auto;
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
}
}
}