mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
18 lines
275 B
SCSS
18 lines
275 B
SCSS
|
html {
|
||
|
font-size: 100%;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
*,
|
||
|
*::before,
|
||
|
*::after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
body {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
line-height: 1.3;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: var(--darkmode);
|
||
|
color: white;
|
||
|
}
|