Stundenaufzeichnung/src/routes/+layout.svelte

45 lines
579 B
Svelte
Raw Normal View History

2024-12-25 01:48:49 +01:00
<script lang="ts">
let { children } = $props();
</script>
2025-01-17 13:32:28 +01:00
<div class="nav">
<ul>
<li><a href="/">Stundenliste</a></li>
<li><a href="/schaetzung">Stundenschätzung</a></li>
2025-01-17 13:32:28 +01:00
<li><a href="/dokumente">Ausdrucken</a></li>
</ul>
</div>
2024-12-25 01:48:49 +01:00
{@render children()}
2025-01-17 13:32:28 +01:00
<style>
.nav {
width: 100%;
display: flex;
justify-content: center;
}
.nav ul {
display: flex;
justify-content: right;
width: 80%;
list-style-type: none;
margin-top: 10px;
margin-bottom: 10px;
padding-right: 10px;
}
.nav ul li {
border: black;
margin-left: 10px;
margin-right: 10px;
}
</style>