Remove scrollbar when nothing to scroll

531 Views Asked by At

I want to have a scrollbar when they are items, but when there is nothing to scroll to don't appear the scrollbar.

enter image description here

If I use this, it removes it, but in all cases. I want to see the scrollbar if it's not empty:

::-webkit-scrollbar {
    display: inline;
}

Any suggestions?

1

There are 1 best solutions below

0
On

The component was added with this css style overflow-y: scroll; and I changed to overflow-y: auto;.

So now if there is no elements to scroll doesn't appear the scrollbar.