1const styles = theme => ({
2 '@global': {
3 '*::-webkit-scrollbar': {
4 width: '0.4em'
5 },
6 '*::-webkit-scrollbar-track': {
7 '-webkit-box-shadow': 'inset 0 0 6px rgba(0,0,0,0.00)'
8 },
9 '*::-webkit-scrollbar-thumb': {
10 backgroundColor: 'rgba(0,0,0,.1)',
11 outline: '1px solid slategrey'
12 }
13 }
14});
15