Files
SupabaseTest/frontend/src/index.css
EugeneTes 42a739ab35 Minimize Vite template's index.css to avoid clashing with inline styles
The scaffolded template shipped an opinionated marketing-page CSS
(fixed #root width, large h1 sizes, letter-spacing) that made the
TodoList header overlap. Replaced with a minimal reset so component
inline styles render as intended.
2026-08-15 12:03:56 +00:00

10 lines
139 B
CSS

:root {
font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
line-height: 1.5;
color-scheme: light dark;
}
body {
margin: 0;
}