add link to editor
This commit is contained in:
parent
5f18ce9fe9
commit
0c2f12f91b
@ -4,7 +4,14 @@
|
||||
<a>The Docks</a>
|
||||
</h1>
|
||||
<h3 class="max">a Full Thrust ship builder</h3>
|
||||
<a>About</a>
|
||||
<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>
|
||||
<span> </span>
|
||||
</nav>
|
||||
</header>
|
||||
@ -13,7 +20,11 @@
|
||||
</main>
|
||||
|
||||
<script>
|
||||
import { page } from "$app/stores";
|
||||
import "$lib/style/index.js";
|
||||
|
||||
$: currentPath = $page.url.pathname;
|
||||
$: console.log({ currentPath });
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@ -25,4 +36,13 @@
|
||||
font-size: var(--font-scale-12);
|
||||
font-weight: normal;
|
||||
}
|
||||
a.spaced {
|
||||
min-width: 5em;
|
||||
}
|
||||
span {
|
||||
width: 5em;
|
||||
}
|
||||
.tabs {
|
||||
border-bottom: 0px;
|
||||
}
|
||||
</style>
|
||||
|
10
src/lib/components/MainLayout.test.js
Normal file
10
src/lib/components/MainLayout.test.js
Normal file
@ -0,0 +1,10 @@
|
||||
import { test, expect } from "vitest";
|
||||
import { render } from "@testing-library/svelte";
|
||||
|
||||
import MainLayout from "./MainLayout.svelte";
|
||||
|
||||
test("we have an editor link", () => {
|
||||
const { queryByText } = render(MainLayout);
|
||||
|
||||
expect(queryByText("Editor")).toBeTruthy();
|
||||
});
|
Loading…
Reference in New Issue
Block a user