40b1f51f64
Delete /tasks/new, /tasks/[uuid], /projects, /tags routes and BottomNav component. Simplify layout to slot-only with 100dvh flexbox. Remove nav-height CSS variable and .page padding rules. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
187 B
Svelte
17 lines
187 B
Svelte
<script>
|
|
import '../app.css';
|
|
</script>
|
|
|
|
<div class="app">
|
|
<slot />
|
|
</div>
|
|
|
|
<style>
|
|
.app {
|
|
height: 100dvh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|