File size: 432 Bytes
bb88c4d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Firefox */
.x-scroll {
  scrollbar-width: thin;
  scrollbar-color: white #2F6DCB;
}

/* Chrome, Edge, and Safari */
.x-scroll::-webkit-scrollbar {
  width: 4px;
}

.x-scroll::-webkit-scrollbar-track {
  background: white;
  border-radius: 100px;
}

.x-scroll::-webkit-scrollbar-thumb {
  background-color: #2F6DCB;
  border-radius: 100px;
  border: 2px solid #2F6DCB;
}