Files
kapteins-daagbok/client/src/index.css
T
elpatron b7a47a1d90 fix(ui): Vite-Template-CSS entfernen und App-Layout wieder zentrieren
index.css auf App-Shell reduziert, App.css zentral in main.tsx geladen
und #root zentriert Dashboard/Logbuch-Ansichten nach dem Login.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-31 14:40:03 +02:00

21 lines
284 B
CSS

/* Minimal app shell — component styles live in App.css / themes.css */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
}
#root {
width: 100%;
max-width: 100%;
min-height: 100svh;
display: flex;
flex-direction: column;
align-items: center;
}