15 lines
371 B
CSS
15 lines
371 B
CSS
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: clip;
|
|
overscroll-behavior: none;
|
|
background: #0b0b12;
|
|
color: #e8e8f0;
|
|
font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
|
|
}
|
|
body { position: fixed; inset: 0; }
|
|
* { box-sizing: border-box; }
|
|
#app { position: fixed; inset: 0; width: auto; height: auto; overflow: clip; }
|