Custom Scrollbar
Cross-browser visual editor for Webkit and Firefox scrollbars.
CSS Output
/* Chrome, Edge, Safari */
.custom-scroll::-webkit-scrollbar {
width: 14px;
height: 14px; /* Horizontal scrollbar height */
}
.custom-scroll::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 8px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background-color: #cbd5e1;
border-radius: 8px;
border: 3px solid transparent;
background-clip: padding-box;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background-color: #94a3b8;
}
/* Firefox */
.custom-scroll {
scrollbar-width: auto;
scrollbar-color: #cbd5e1 #f1f5f9;
}