How can I hide scrollbar from popup?

Hello,

Id like to know how to hide it in a popup

Some custom CSS should do the trick!

Add this to a HTML element

<style>
body::-webkit-scrollbar {
  display: none;
}
</style>
1 Like