Home › Forums › CSS › Set a Global Minimum Width While Developing Responsive Site › Reply To: Set a Global Minimum Width While Developing Responsive Site
January 5, 2015 at 10:59 am
#192261
Participant
Yeah I would rather not rewrite all the media queries and some of the media queries at larger sizes I would like to keep. I am using LESS so theoretically I could just change the variable for the smaller media queries to something like this:
@media (min-width: @screen-sm-min)
where right now I have:
@screen-md-min: 768px;
could change to this:
@screen-md-min: 1px;
That may work. Then when we go live with the responsive version just change it back.