Files
gems/opal-web/src/routes/+layout.svelte
T
joakim 40b1f51f64 refactor(web): remove old routes and BottomNav for single-screen redesign
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>
2026-02-14 17:27:23 +01:00

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>