Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.website-wrapper .sidebar-widget.widget_product_categories .product-categories {
max-height: 310px;
overflow: hidden;
overflow-y: auto;
padding-right: 30px;
}
.sidebar-widget.widget_product_categories {
--scrollbar-track-bg: rgba(0, 0, 0, 0.05);
--scrollbar-thumb-bg: rgba(0, 0, 0, 0.12); }
.sidebar-widget.widget_product_categories ::-webkit-scrollbar {
width: 5px;
}
.sidebar-widget.widget_product_categories ::-webkit-scrollbar-track {
background-color: var(--scrollbar-track-bg);
}
.sidebar-widget.widget_product_categories ::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb-bg);
}
The height is set by max-height
Best Regards