fix: Styling disabled nav-link

This commit is contained in:
Leni Aniva 2024-10-18 11:34:16 -07:00
parent d756598342
commit 60fc46af4a
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 3 additions and 1 deletions

View File

@ -115,11 +115,13 @@ a, button {
text-shadow: 0 0 5px; text-shadow: 0 0 5px;
} }
.nav-link, .nav-link * { .nav-link, .nav-link * {
color: var(--navlink);
@apply text-lg; @apply text-lg;
font-weight: 500; font-weight: 500;
font-family: serif; font-family: serif;
} }
.nav-link:not(.disabled-link) {
color: var(--navlink);
}
a.disabled-link { a.disabled-link {
color: rgb(128,128,128); color: rgb(128,128,128);
pointer-events: none; pointer-events: none;