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.
10 lines
139 B
CSS
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;
|
|
}
|