first fixes

This commit is contained in:
Kevin
2026-06-29 22:48:59 +02:00
parent 184de52ad2
commit 66a97be5c6
25 changed files with 646 additions and 471 deletions
+7 -5
View File
@@ -4,14 +4,16 @@ import Header from './header.vue'
</script>
<template>
<div class="flex h-screen bg-gray-200 font-roboto">
<Sidebar />
<div class="flex h-screen bg-background font-body-md text-on-background overflow-hidden">
<aside class="w-64 shrink-0">
<Sidebar />
</aside>
<div class="flex-1 flex flex-col overflow-hidden">
<div class="flex-1 flex flex-col min-w-0">
<Header />
<main class="flex-1 overflow-x-hidden overflow-y-auto bg-gray-200">
<div class="container mx-auto px-6 py-8">
<main class="flex-1 pt-16 min-h-screen border-0 overflow-auto">
<div class="p-10 max-w-[1400px] mx-auto">
<slot />
</div>
</main>