Burger Button Display Not changing
I want the burger to show up when my screen size is lesser than 1023px.
It is not happening only when using media query
.burger {
display: none;
position: absolute;
cursor: pointer;
right: 5%;
top: 15px;
font-size: 25px;
background: none;
border: none;
}
@media only screen and (max-width: 1053px) {
.burger {
display: block;
}
}
But the burger icon is not appearing although I've tried creating burger from span and I tags