I am using materialize css. I'm using side nav and want to set visible even on mobile. I'm using following code for this but its not working.
@media only screen and (max-width: 992px) {
.side-nav{
visibility: visible;
opacity: 100;
}
}
Its keep on hiding on small screen.