Last active
February 10, 2016 09:45
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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