Merge pull request 'fix: Page navigation links' (#25) from post/page into main
Reviewed-on: #25
This commit is contained in:
commit
78a414c747
|
@ -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;
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
</svelte:head>
|
||||
|
||||
<hr class="separator" />
|
||||
<PostList {posts} pageN=1 {maxPageN}/>
|
||||
<PostList {posts} pageN={1} {maxPageN}/>
|
||||
|
|
Loading…
Reference in New Issue