Skip to content

Instantly share code, notes, and snippets.

@danielefrisanco
Last active February 7, 2024 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielefrisanco/01f3c2e45ed78396b3d42477ca87a5c7 to your computer and use it in GitHub Desktop.
Save danielefrisanco/01f3c2e45ed78396b3d42477ca87a5c7 to your computer and use it in GitHub Desktop.
mostrare sempre la scroll bar su android
::-webkit-scrollbar {
-webkit-appareance: none;
}
::-webkit-scrollbar:vertical {
weight: 12px;
}
::-webkit-scrollbar:horizontal {
height: 12px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 5);
border-radius: 10px;
border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
border-radius: 10px;
border: 2px solid #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment