feat(dashboard): page d'accueil avec bouton planning et layout fixe sans scroll

- Composant dashboard migré vers fichiers HTML/CSS externes avec carte de navigation vers /dashboard/planning
- html, body, app-root et main fixés à 100vw/100vh sans overflow pour remplir la fenêtre navigateur

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 17:48:06 +02:00
parent c0f146618e
commit 91e220fb47
5 changed files with 125 additions and 18 deletions
+5 -1
View File
@@ -9,9 +9,13 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
html, body {
width: 100vw;
height: 100vh;
overflow: hidden;
font-family: 'Be Vietnam Pro', sans-serif;
}
:root {