-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
34 lines (28 loc) · 672 Bytes
/
Copy pathindex.css
File metadata and controls
34 lines (28 loc) · 672 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
@import "tailwindcss";
button {
cursor: pointer;
}
/* Custom Scrollbar Styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(17, 24, 39, 0.5); /* dark-900 with transparency */
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(75, 85, 99, 0.8); /* gray-600 */
border-radius: 10px;
border: 2px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(59, 130, 246, 0.8); /* blue-500 */
background-clip: content-box;
}
/* Firefox Support */
* {
scrollbar-width: thin;
scrollbar-color: rgba(75, 85, 99, 0.8) rgba(17, 24, 39, 0.5);
}