add theme switch

This commit is contained in:
DerTyp7
2023-10-10 15:44:08 +02:00
parent c9dd93a051
commit 033993eda8
6 changed files with 118 additions and 8 deletions

View File

@@ -20,15 +20,15 @@
a {
margin-left: 1rem;
text-decoration: none;
color: #323232;
color: var(--color-font-link-header);
font-weight: 600;
font-size: 1.2rem;
transition: all 0.1s ease-in-out;
border-bottom: 3px solid transparent;
border-bottom: 3px solid var(--color-font-link-header);
&:hover {
color: #000000;
border-color: #000000;
color: var(--color-font-link-header-hover);
border-color: var(--color-font-link-header-hover);
}
}
}