aboutsummaryrefslogtreecommitdiff
path: root/styles/globals.css
blob: 471cc80473a5c42a01303447d9410904dd43f951 (plain)
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
42
43
html, body {
	padding: 0;
	margin: 0;

	background-color: var(--bg);
	color: var(--fg);
}
* { font-family: "Inter", sans-serif !important; }

.keyframe { fill: var(--gruble); }

h1 { font-size: 1.25rem; }
h2 { font-size: 1.125rem; }
h3 { font-size: 1rem; }

h1, h2, h3 {
	margin: 0;
}

.MuiSvgIcon-root {
	font-size: 24px !important;
}

.MuiButton-label {
	text-transform: none !important;
	font-family: "Inter", sans-serif;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar {
	background-color: var(--c100);
}

::-webkit-scrollbar-thumb {
	background-color: var(--c400);
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}