mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
* refactor(web): split global CSS by ownership * test(web): expand CSS imports in style checks * fix(web): keep privacy consent banner above modals
23 lines
461 B
CSS
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);
|
|
}
|
|
|