-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathapp.css
More file actions
40 lines (33 loc) · 731 Bytes
/
app.css
File metadata and controls
40 lines (33 loc) · 731 Bytes
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
@import './font.css';
@import './colors.css';
@import './themes/dark.css';
@import './themes/light.css';
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* You can add custom styles here */
::-webkit-scrollbar {
width: 6px;
height: 6px;
background: transparent;
}
.scrollbar-main::-webkit-scrollbar {
width: 8px;
height: 8px;
background: transparent;
}
body::-webkit-scrollbar {
width: 8px;
height: 8px;
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb);
border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--scrollbar-thumb-hover);
}
::-webkit-scrollbar-corner {
background: transparent;
}