sw-fe/src/styles/base.css

13 lines
226 B
CSS

/* ========== BASE / RESET ========== */
* {
box-sizing: border-box;
}
body {
margin: 0;
background: #050816;
color: #ffffff;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}