aotds-docks/src/lib/components/MainLayout.svelte

48 lines
851 B
Svelte
Raw Normal View History

2023-04-14 16:56:39 +00:00
<header>
<nav>
<h1>
<a>The Docks</a>
</h1>
<h3 class="max">a Full Thrust ship builder</h3>
2023-04-16 16:23:13 +00:00
<div class="tabs in left-align">
<a class="spaced" class:active={currentPath === "/"} href="/">Editor</a>
<a
class="spaced"
class:active={currentPath.startsWith("/about")}
href="/about">About</a
>
</div>
2023-04-14 16:56:39 +00:00
<span>&nbsp;</span>
</nav>
</header>
<main class="responsive">
<slot />
</main>
<script>
2023-04-16 16:23:13 +00:00
import { page } from "$app/stores";
2023-04-14 16:56:39 +00:00
import "$lib/style/index.js";
2023-04-16 16:23:13 +00:00
$: currentPath = $page.url.pathname;
2023-04-14 16:56:39 +00:00
</script>
<style>
header nav {
align-items: baseline;
font-family: "Faktos";
}
h3 {
font-size: var(--font-scale-12);
font-weight: normal;
}
2023-04-16 16:23:13 +00:00
a.spaced {
min-width: 5em;
}
span {
width: 5em;
}
.tabs {
border-bottom: 0px;
}
2023-04-14 16:56:39 +00:00
</style>