Skip to content

Instantly share code, notes, and snippets.

@benjclark
Created April 26, 2022 19:06
Show Gist options
  • Select an option

  • Save benjclark/1d1318e08cba8c95c4d429d5dee275dc to your computer and use it in GitHub Desktop.

Select an option

Save benjclark/1d1318e08cba8c95c4d429d5dee275dc to your computer and use it in GitHub Desktop.
css for making the scrollbar always visible on MacOS
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, .5);
box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment