Spaces:
Runtime error
Runtime error
Victoria Slocum
commited on
Commit
·
861c543
1
Parent(s):
a99b0cf
Update scrollbar.css
Browse files- scrollbar.css +9 -1
scrollbar.css
CHANGED
@@ -1,8 +1,16 @@
|
|
1 |
.output-html {
|
2 |
-
overflow-x:
|
3 |
overflow-y: visible;
|
4 |
}
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
.output-html::-webkit-scrollbar:horizontal {
|
7 |
height: 11px;
|
8 |
}
|
|
|
1 |
.output-html {
|
2 |
+
overflow-x: auto;
|
3 |
overflow-y: visible;
|
4 |
}
|
5 |
|
6 |
+
.output-html::-webkit-scrollbar {
|
7 |
+
-webkit-appearance: none;
|
8 |
+
}
|
9 |
+
|
10 |
+
.output-html::-webkit-scrollbar:vertical {
|
11 |
+
width: 0px;
|
12 |
+
}
|
13 |
+
|
14 |
.output-html::-webkit-scrollbar:horizontal {
|
15 |
height: 11px;
|
16 |
}
|