33 lines
581 B
CSS
33 lines
581 B
CSS
body {
|
|
font-family: var(--font-sans);
|
|
background: var(--bg-deep);
|
|
color: var(--text-primary);
|
|
overflow-x: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
scrollbar-color: var(--grad-center) var(--bg-mid);
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg-mid);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--grad-center);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--highlight);
|
|
}
|