blob: c4a3ba1c3310e64d36cf6e01aafb6c73c098dad9 (
plain) (
blame)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
body,
html {
@apply bg-black text-white;
scroll-behavior: smooth;
}
html {
height: 100%;
}
body {
min-height: 100%;
@apply flex flex-col;
}
#__next {
@apply flex flex-1 flex-col;
}
*::-webkit-scrollbar-track {
@apply bg-gray-900;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
@apply bg-gray-900;
}
*::-webkit-scrollbar-thumb {
@apply bg-gray-600;
}
|