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 also had some problems with media queries in Chrome.
As soon as I toggled device toolbar, the scaling was just wrong. The following
<meta name="viewport" content="width=device-width, initial-scale=1">
fixed this issue.
None of these fixed my issue, but my problem, after being dumbfouded why a breakpoint was occuring at 1000px, was because I was using the react-responsive library and I still had a breakpoint set in some JSX component!