Skip to content

Instantly share code, notes, and snippets.

@StoyPenny
Created April 18, 2025 16:11
Show Gist options
  • Save StoyPenny/59cb9061db2b80e395af1d699117e6ab to your computer and use it in GitHub Desktop.
Save StoyPenny/59cb9061db2b80e395af1d699117e6ab to your computer and use it in GitHub Desktop.
/**
* iOS Style Scrollbar
*/
::-webkit-scrollbar {
width: 5px; /* Sets a thin width for the vertical scrollbar */
}
::-webkit-scrollbar-track {
background-color: transparent; /* Mimics the overlay style */
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.3); /* Light, semi-transparent gray */
border-radius: 2.5px; /* Rounded corners */
}
::-webkit-scrollbar-button {
display: none; /* Hides the scrollbar buttons */
}
/**
* Adroid Style Scrollbar
*/
::-webkit-scrollbar {
width: 8px; /* Slightly wider than iOS */
}
::-webkit-scrollbar-track {
background-color: transparent; /* For an overlay style */
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.5); /* Darker shade of gray */
border-radius: 4px; /* Slightly rounded or rectangular */
}
::-webkit-scrollbar-button {
display: none; /* Hides the scrollbar buttons */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment