Browse Source

Use default scrollbar for body on webkit browsers

pull/6176/head
Josh 5 years ago
committed by Rapptz
parent
commit
410a0c8794
  1. 8
      docs/_static/style.css

8
docs/_static/style.css

@ -140,22 +140,20 @@ body {
/* Scrollbar related */
body::-webkit-scrollbar,
#sidebar::-webkit-scrollbar {
width: 1em;
width: 0.5em;
}
body::-webkit-scrollbar-thumb,
#sidebar::-webkit-scrollbar-thumb {
background-color: var(--scrollbar);
border-radius: 0.5em;
border-radius: 0.25em;
}
body::-webkit-scrollbar-thumb:hover,
#sidebar::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar-hover);
}
/* grid related */
.main-grid {

Loading…
Cancel
Save