You can control the size of the scrollbar handle by applying CSS min-width, max-width, min-height, or max-height to the handle classes.
Note: Do not use the width or height properties, as these are managed automatically by the plugin. To force a constant handle size, set both the minimum and maximum properties to the same value.
- Horizontal handles use:
.os-scrollbar-horizontal .os-scrollbar-handle - Vertical handles use:
.os-scrollbar-vertical .os-scrollbar-handle
/* horizontal boundaries */
.os-scrollbar-horizontal .os-scrollbar-handle {
min-width: 50px;
max-width: 200px;
}
/* vertical boundaries */
.os-scrollbar-vertical .os-scrollbar-handle {
min-height: 40px;
max-height: 40px;
}