1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@import "constants.scss";
html {
width: 100%;
height: 100%;
color-scheme: dark;
}
body {
margin: 0;
padding: 0;
font-family: $font-monospace;
background-color: $color-gray-20;
color: $color-white;
font-size: $font-size;
line-height: 1.5;
width: 100%;
height: 100%;
}
code {
font-family: $font-monospace;
cursor: text;
}
ul {
margin: 0;
padding: 0;
}
p {
margin: 0;
}
a {
color: inherit;
}
.MuiTypography-body1 {
font-family: inherit !important;
font-size: inherit !important;
}