fix: Page navigation links #25

Merged
aniva merged 3 commits from post/page into main 2024-10-18 14:36:59 -07:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 60fc46af4a - Show all commits

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;