aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/svg.scss
blob: 2aa0441803dbd344faa1c3e2b6176bea18da1618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
body {
    svg {
        path,
        polygon,
        linearGradient,
        rect {
            fill: map-get($colors, primary) !important;
        }

        circle {
            fill: none !important;
        }

        text {
            display: none !important;
        }
    }
}