This commit is contained in:
2026-04-21 16:41:15 +01:00
parent f67abeb0bf
commit 039f832724
12 changed files with 295 additions and 201 deletions
-1
View File
@@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/shared.css" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
+20
View File
@@ -0,0 +1,20 @@
.nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 32px;
background-color: var(--accent-2);
border: 3px, outset, var(--accent-3);
font-size: 18px;
a {
padding: 5px;
color: #9f8083;
}
a:hover {
color: #043b2f;
}
}
+2 -19
View File
@@ -1,4 +1,5 @@
<script lang="ts" module>
import "./nav.scss";
export { NavBar };
</script>
@@ -9,23 +10,5 @@
</nav>
{/snippet}
<style>
nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
height: 32px;
background-color: var(--accent-2);
border: 3px, outset, var(--accent-3);
font-size: 18px;
a {
padding: 5px;
color: #9f8083;
}
a:hover {
color: #043b2f;
}
}
<style module>
</style>
+20 -19
View File
@@ -9,24 +9,25 @@
<div class="side-card">meow</div>
</div>
</div>
<style>
.side-card {
background-color: var(--thirdly);
border: 2px, inset, var(--thirdly);
}
.side-card + .side-card {
margin-top: 5px;
}
.side-card-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: small;
}
.side-card-bottom {
align-self: flex-end;
}
</style>
</div>
{/snippet}
<style>
.side-card {
background-color: var(--thirdly);
border: 2px, inset, var(--thirdly);
}
.side-card + .side-card {
margin-top: 5px;
}
.side-card-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: small;
}
.side-card-bottom {
align-self: flex-end;
}
</style>
-1
View File
@@ -1 +0,0 @@
export const prerender = true;
+2 -1
View File
@@ -4,6 +4,7 @@
import { SidebarRight } from "$lib/sidebar/sidebar_right.svelte";
import { WebButtons } from "$lib/web_buttons/webButtons.svelte";
import { NavBar } from "$lib/nav.svelte";
import "$lib/nav.svelte";
let { children } = $props();
export const prerender = true;
@@ -11,7 +12,7 @@
<svelte:head>
<link rel="icon" href={favicon} />
<link href="/shared.css" rel="stylesheet" />
<link href="/shared__.css" rel="stylesheet" />
</svelte:head>
<div class="container">
+2
View File
@@ -0,0 +1,2 @@
export const prerender = true
export const csr = false;