Reputation: 244
<div class="row">
<div class="col s12 m6 l6">
</div>
</div>
default screen size for mobile view is <=600px in materialize css but how to increase this screen size as <=700px?
Upvotes: 1
Views: 1685
Reputation: 11
You check in the _variables.scss in the component folder of their library. Hit ctrl+f then type Media Query Ranges. You'll be able to set the limits you want.
Upvotes: 0
Reputation: 16855
If you want to override your materialize css then you have to use media query for this like in your custom css file which should be defined below your materialize.css
file
@media only screen and (min-width: 701px){
.s12{
width:100%
}
.hide-on-small-only{
display:none;
}
/* other css... */
}
Upvotes: 1
Reputation: 13679
find all lines in your materialize.css
file ,
@media only screen and (min-width: 601px)
and replace it with below :
@media only screen and (min-width: 701px)
Upvotes: 0