Hi!,
I am experiencing issues with the scrollbar lwhen using Ios devices specially in mobile,
the scrollbar won’t appear in this link https://www.besocialscene.com/new-sept-homepage?hs_preview=YhTtsyAc-13258353405,
There’s no issue with android and desktop as per the screenshot below, but when using iOS the scrollbar won’t appear
**
**
This are the codes that I have used for the styline of the scrollbar
::-webkit-scrollbar{
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0,0,0,.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #707070;
}
::-webkit-scrollbar-thumb:hover {
background: #355cc9;
}
::-webkit-overflow-scrolling:touch; {
background:#707070;
width: 5px;
}


