Tweak CSS

This commit is contained in:
Sangelo 2023-07-12 11:35:40 +02:00
parent dc37408a82
commit 787f2a252b
2 changed files with 3 additions and 12 deletions

View file

@ -94,7 +94,6 @@
font-weight: 400;
font-size: 1em;
text-decoration: none;
transition: font-style;
}
[data-theme="dark"] .navigation-bar a {
@ -103,7 +102,6 @@
font-weight: 300;
font-size: 1em;
text-decoration: none;
transition: font-style;
}
.navigation-bar a.current-page {
@ -115,11 +113,12 @@
display: block;
width: 20px;
height: 4px;
background-color: #000;
background-color: #1b2832;
border-radius: 2px;
margin-top: 4px;
margin-left: auto;
margin-right: auto;
transition: ease-in-out 0.05s;
}
[data-theme="dark"] .navigation-bar a.current-page {
@ -127,15 +126,7 @@
}
[data-theme="dark"] .navigation-bar a.current-page::after {
content: "";
display: block;
width: 20px;
height: 4px;
background-color: #fff;
border-radius: 2px;
margin-top: 4px;
margin-left: auto;
margin-right: auto;
}

View file

@ -74,6 +74,6 @@
}
.switcher {
transition: all 0.05s;
transition: ease-in-out 0.05s;
}
</style>