diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 95d7375..19090a7 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -96,6 +96,7 @@ /* colours */ --color-text: #d0d0d0; --color-text-secondary: #b0b0b0; + --color-text-tertiary: #808080; --color-text-img: invert(98%) sepia(1%) saturate(4643%) hue-rotate(297deg) brightness(115%) contrast(76%); --color-text-dark: #1e1e1e; diff --git a/src/routes/feed/+page.svelte b/src/routes/feed/+page.svelte index 0074cff..6b945bf 100644 --- a/src/routes/feed/+page.svelte +++ b/src/routes/feed/+page.svelte @@ -13,7 +13,7 @@ {#snippet pageButtons(currentIndex: number)}
{#if currentIndex == 1} -

x

+

x

{:else} < {/if} @@ -23,7 +23,7 @@ {/each} {#if currentIndex == data.maxPages} -

x

+

x

{:else} > {/if} @@ -101,6 +101,11 @@ cursor: pointer; } + .page-button-disabled { + color: var(--color-text-tertiary); + cursor: not-allowed; + } + .page-index:link, .page-index:visited { color: var(--color-text) }