11 lines
221 B
SCSS
11 lines
221 B
SCSS
/* Global reset and desktop background */
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
user-select: none;
|
|
}
|