Spaces:
Runtime error
Runtime error
Victoria Slocum
commited on
Commit
·
114fb09
1
Parent(s):
c97cfb0
Update scrollbar.css
Browse files- scrollbar.css +30 -0
scrollbar.css
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.output-html {
|
| 2 |
+
overflow-x: auto;
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
.output-html::-webkit-scrollbar {
|
| 6 |
+
-webkit-appearance: none;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.output-html::-webkit-scrollbar:vertical {
|
| 10 |
+
width: 0px;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
.output-html::-webkit-scrollbar:horizontal {
|
| 14 |
+
height: 11px;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.output-html::-webkit-scrollbar-thumb {
|
| 18 |
+
border-radius: 8px;
|
| 19 |
+
border: 2px solid white;
|
| 20 |
+
background-color: rgba(0, 0, 0, .5);
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.output-html::-webkit-scrollbar-track {
|
| 24 |
+
background-color: #fff;
|
| 25 |
+
border-radius: 8px;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.spans {
|
| 29 |
+
min-height: 75px;
|
| 30 |
+
}
|