open-design/apps/web/src/styles/base.css
Marc Chan 619087a6b4
refactor(web): split global CSS by ownership (#2609)
* refactor(web): split global CSS by ownership

* test(web): expand CSS imports in style checks

* fix(web): keep privacy consent banner above modals
2026-05-25 05:48:28 +00:00

23 lines
461 B
CSS

* { box-sizing: border-box; }
html, body, #root { height: 100%; margin: 0; }
body {
font-family: var(--sans);
color: var(--text);
background: var(--bg-app);
font-size: 13.5px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.od-loading-shell {
min-height: 100vh;
display: grid;
place-items: center;
color: var(--text-muted);
background: var(--bg-app);
font: 500 13px/1.4 var(--sans);
}