I have some media queries like this-
@media (min-width: 576px) {
.zigzag-lines{
display: none;
}
.decor-single-quote {
display: none;
}
}
@media (min-width: 768px) {
.zigzag-lines{
display: block;
}
.decor-single-quote {
display: block;
}
}
These work when the page is zoomed on a desktop but when I load it on mobile, it doesn't. I've also included this meta tag in HTML-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
I'm using flex from bootstrap-4 so I can't use d-sm-none. (It affects the design)
Can someone explain why it isn't working? thanks!