provapraticafrontend/src/index.css

22 lines
259 B
CSS
Raw Normal View History

2026-06-09 13:04:28 +02:00
*,
*::before,
*::after {
2026-06-09 12:25:37 +02:00
box-sizing: border-box;
}
body {
margin: 0;
2026-06-09 13:04:28 +02:00
font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
background: #f1f5f9;
color: #1e293b;
line-height: 1.5;
2026-06-09 12:25:37 +02:00
}
2026-06-09 13:04:28 +02:00
#root {
min-height: 100vh;
2026-06-09 12:25:37 +02:00
}
2026-06-09 13:04:28 +02:00
a {
color: #2563eb;
2026-06-09 12:25:37 +02:00
}