Skip to content

Instantly share code, notes, and snippets.

@Quinten
Last active February 10, 2016 09:45
Show Gist options
  • Save Quinten/d5543e2f7e8e01de6fa7 to your computer and use it in GitHub Desktop.
Save Quinten/d5543e2f7e8e01de6fa7 to your computer and use it in GitHub Desktop.
a wrapper for a table that results in a smooth scroll overflowing container for tables that are to wide on mobile
.scroll-table-wrapper {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
&::-webkit-scrollbar {
-webkit-appearance: none;
}
&::-webkit-scrollbar:vertical {
width: 11px;
}
&::-webkit-scrollbar:horizontal {
height: 11px;
}
&::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 2px solid white;
background-color: rgba(0, 0, 0, .5);
}
&::-webkit-scrollbar-track {
background-color: #fff;
border-radius: 8px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment