Merge pull request 'fix: Page navigation links' (#25) from post/page into main

Reviewed-on: #25
This commit is contained in:
Leni Aniva 2024-10-18 14:36:58 -07:00
commit 78a414c747
3 changed files with 5 additions and 3 deletions

View File

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

View File

@ -16,8 +16,8 @@
{#each routes as item}
<a
class="nav-link"
class:current-link={isCurrentLink($page.url.pathname, item.route)}
class:disabled-link={item.disabled}
class:current-link={isCurrentLink($page.url.pathname, item.route)}
href={item.route}>{item.name}</a>
{/each}
<a class="nav-link icon" href="/rss.xml"><Rss /></a>

View File

@ -12,4 +12,4 @@
</svelte:head>
<hr class="separator" />
<PostList {posts} pageN=1 {maxPageN}/>
<PostList {posts} pageN={1} {maxPageN}/>