Extract SVG inline styles to CSS file

This commit is contained in:
2022-12-13 01:13:47 +01:00
parent 52e588e0cc
commit 3d0dde80d0
2 changed files with 25 additions and 18 deletions

View File

@@ -8,3 +8,10 @@ summary {
margin-top: 10px;
margin-bottom: 20px;
}
svg:is(.mode-sunny, .mode-moon) :is(line, circle),
svg:-webkit-any(.mode-sunny, .mode-moon) :-webkit-any(line, circle),
svg:-moz-any(.mode-sunny, .mode-moon) :-moz-any(line, circles) {
stroke-linecap: round;
stroke-miterlimit: 10;
stroke-width: 32px;
}