b7a47a1d90
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>
21 lines
284 B
CSS
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;
|
|
}
|