I am building a responsive page and the media queries are firing at the wrong width size. I am using Chrome.
@media screen and (max-width: 1200px) {
.logo-p
I ended up on this thread after an hour of frustration, in the end I realised I'd accidentally used min-height instead of min-width:
@media screen and (min-height: $sm) { }
instead of...
@media screen and (min-width: $sm) { }
Just a reminder to quickly check it if you were having the same issue as me face palm, it's late.