Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Set a Global Minimum Width While Developing Responsive Site Reply To: Set a Global Minimum Width While Developing Responsive Site

#192261
jeremiahjmartin
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.