Scroll Bar Issue in Safari

Hello,

I've encountered an issue with the scrollbar functionality on my webpage specifically when accessed through Safari. Despite its functionality on other browsers and devices, Safari on iOS 14 displays only the native scrollbar during scrolling, contrary to the desired behaviour of consistently showing the scrollbar.


  &::-webkit-scrollbar {
    height: 2px;
  }

  &::-webkit-scrollbar-track {
    background-color: "white";
    margin-left: 4px;
    margin-right: 4px;
  }
  &::-webkit-scrollbar-thumb {
    background: "orange";
  }

}

Replies

I was also facing the same issues while testing in IOS 14