File size: 387 Bytes
249a397
102dac3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@import "tailwindcss";

@layer utilities {
  /* Custom Scrollbar for Dark Mode */
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background: #3f3f46; /* zinc-700 */
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #52525b; /* zinc-600 */
  }
}