Add monochrome icons in CSS

This commit is contained in:
Tyler Flowers 2023-08-06 03:07:49 +00:00 committed by taskylizard
parent a9b779359a
commit 6f7029ec6b

View File

@ -1,3 +1,12 @@
h1 {
h1 {
text-align: center;
}
/* Icons */
html.dark ul.flex-col > li > a > svg {
color: white !important;
}
:not(html.dark) ul.flex-col > li > a > svg {
color: black;
}