style scroll react csss

Solutions on MaxInterview for style scroll react csss by the best coders in the world

showing results for - "style scroll react csss"
Ronan
27 Nov 2019
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