nitropage
Version:
A free and open source, extensible visual page builder based on SolidStart.
22 lines (20 loc) • 482 B
CSS
.sidebar {
width: 100%;
height: 100%;
position: relative;
overflow-x: hidden;
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: var(--np-slate-500) var(--np-slate-200);
overscroll-behavior: none;
color: var(--np-slate-900);
padding-bottom: 0.75rem;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
@supports (-moz-appearance: none) {
.sidebar {
scrollbar-width: auto;
}
}