Victoria Slocum commited on
Commit
df8e4de
1 Parent(s): 551011b

fix: scrollbar (again)

Browse files
Files changed (1) hide show
  1. scrollbar.css +5 -5
scrollbar.css CHANGED
@@ -1,22 +1,22 @@
1
- .frame::-webkit-scrollbar {
2
  -webkit-appearance: none;
3
  }
4
 
5
- .frame::-webkit-scrollbar:vertical {
6
  width: 11px;
7
  }
8
 
9
- .frame::-webkit-scrollbar:horizontal {
10
  height: 11px;
11
  }
12
 
13
- .frame::-webkit-scrollbar-thumb {
14
  border-radius: 8px;
15
  border: 2px solid white; /* should match background, can't be transparent */
16
  background-color: rgba(0, 0, 0, .5);
17
  }
18
 
19
- .frame::-webkit-scrollbar-track {
20
  background-color: #fff;
21
  border-radius: 8px;
22
  }
 
1
+ .overflow-auto::-webkit-scrollbar {
2
  -webkit-appearance: none;
3
  }
4
 
5
+ .overflow-auto::-webkit-scrollbar:vertical {
6
  width: 11px;
7
  }
8
 
9
+ .overflow-auto::-webkit-scrollbar:horizontal {
10
  height: 11px;
11
  }
12
 
13
+ .overflow-auto::-webkit-scrollbar-thumb {
14
  border-radius: 8px;
15
  border: 2px solid white; /* should match background, can't be transparent */
16
  background-color: rgba(0, 0, 0, .5);
17
  }
18
 
19
+ .overflow-auto::-webkit-scrollbar-track {
20
  background-color: #fff;
21
  border-radius: 8px;
22
  }