-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
38 lines (33 loc) · 932 Bytes
/
globals.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--color-1: #1F2937;
--color-2: #1F2937;
}
/* For Webkit-based browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
width: 8px;
/* Width of the scrollbar */
height: 8px;
/* Height of the scrollbar for horizontal scrollbars */
}
::-webkit-scrollbar-track {
background: var(--color-1);
/* Background color of the scrollbar track */
border-radius: 4px;
/* Add border radius to make the scrollbar track look smooth */
}
::-webkit-scrollbar-thumb {
background: var(--color-2);
/* Light blue color for the scrollbar thumb */
border-radius: 4px;
/* Add border radius to make the scrollbar thumb look smooth */
}
/* For Firefox */
* {
scrollbar-width: thin;
/* Make the scrollbar thin */
scrollbar-color: var(--color-2) var(--color-1);
/* Light blue color for the scrollbar thumb and background color for the scrollbar track */
}