Mediaqueries don't work in Radium

199 Views Asked by At

I use Radium Style component to change default-style of React-Slick. I do everything like they write in tutorial and styles are changing, but media queries don't work.

 <Style scopeSelector='.slick-prev' rules={{
            left: '25px',
             '@media (min-width: 400px)' : {
                  left: '100px',}
}}/>

I tried to use @media (min-width: 400px) and @media screen and (min-width: 400px), and nothing help.

0

There are 0 best solutions below