Is there a way to prevent the white area from showing up in my divs where the scroll bar thumb appears? The issue seems to occur randomly on Chrome and Safari.
https://i.sstatic.net/jFzTf.png
This is the div in question
.column-content{
height:60vh;
padding: 10px 3px 0 3px;
overflow:scroll;
touch-action: none;
@media screen and (min-height:1100px){
height: 70vh;
}
}
I want the content to be scrollable without that unsightly white bar showing up. I've attempted adjusting the webkit scroll track in my index.html file, but it hasn't resolved the issue.