1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-18 14:25:32 -04:00

clean up typography styles

This commit is contained in:
2021-12-02 10:52:42 -05:00
parent ce1a24170a
commit cf9a8f742a
4 changed files with 23 additions and 36 deletions

View File

@@ -27,11 +27,11 @@ body {
// set themed lightbulb icons manually
&.light button.dark-mode-toggle {
background-image: url(themes.$icon-bulb-on);
background-image: url("data:image/svg+xml;charset=utf-8,#{themes.$icon-bulb-on}");
}
&.dark button.dark-mode-toggle {
background-image: url(themes.$icon-bulb-off);
background-image: url("data:image/svg+xml;charset=utf-8,#{themes.$icon-bulb-off}");
}
}