Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to style scrollbars with JSS?

Tags:

jss

How can I style the scrollbars with JSS? The solution below does not work.

   '::-webkit-scrollbar-track': {
     background: 'red',
   },
   '::-webkit-scrollbar': {
     width: 10,
     background: 'red',
   },
   '::-webkit-scrollbar-thumb': {
     background: 'green',
   },
like image 823
vuvu Avatar asked Dec 11 '22 05:12

vuvu


1 Answers

In JSS, pseudo-elements are prefixed with an ampersand. Give the following a try:

'&::-webkit-scrollbar-thumb': {
    background: '#888'
}
like image 63
Angel Politis Avatar answered Feb 04 '23 23:02

Angel Politis