fix: Styling for RSS nav link

This commit is contained in:
Leni Aniva 2024-10-11 14:54:03 -07:00
parent f923b1ea68
commit 2c1e7a0a39
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
class:disabled-link={item.disabled}
href={item.route}>{item.name}</a>
{/each}
<a class="icon" href="/rss.xml"><Rss /></a>
<a class="nav-link icon" href="/rss.xml"><Rss /></a>
</div>
<style>

View File

@ -2,6 +2,6 @@ import type { PageLoad } from './$types';
import { getTags } from '$lib/posts';
export const load: PageLoad = async (_) => {
let allTags = await getTags();
const allTags = await getTags();
return { allTags };
};