Skip to content Skip to sidebar Skip to footer

Media Query Not Working

The CSS is in a .scss file and being minified with Gulp which works without any issues. I'm testing the responsiveness is Chrome(resizing the webpage). I have added

Solution 1:

I've been using $sm, $md, $lg, $xl as SASS variables to represent different sizes.

$sm = 600; // @media screen queries don't compile correctly$sm = 600px; // @media screen queries work as expected

Hopefully this helps someone

Solution 2:

Post a Comment for "Media Query Not Working"