athenas-lens / scrollbar.css
bowphs's picture
Update scrollbar.css
329698d verified
raw
history blame
538 Bytes
.output-html {
overflow-x: auto;
overflow-y: auto;
max-height: 300px;
}
.output-html::-webkit-scrollbar {
-webkit-appearance: none;
}
.output-html::-webkit-scrollbar:vertical {
width: 0px;
}
.output-html::-webkit-scrollbar:horizontal {
height: 11px;
}
.output-html::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 2px solid white;
background-color: white;
}
.output-html::-webkit-scrollbar-track {
background-color: white;
border-radius: 8px;
}
.spans {
min-height: 75px;
}