Add monochrome icons in CSS

This commit is contained in:
Tyler Flowers 2023-08-06 03:07:49 +00:00 committed by GitHub
parent a9b779359a
commit 75c3ab2b3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,12 @@
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;
}