Can you change Zurb Foundation's Responsive breakpoint from 640px to 768px? -
can change zurb foundation's first breakpoint 640px 768px? (are there side effects of doing so, , common , accepted practice?).
i think bootstrap's first breakpoint 768px , allow more room "desktop" browser or tablet. 640px might cramped fit in things, , goes way 1024px, difficult design in between.
at 640px, header elements pushed down row, items need styled cramped margin space, , @ 900px or so, margin space %
values, expanded remain cramped.
if using sass version of foundation, it's easy change breakpoints. take @ _settings.scss file, here few relevant lines:
$breakpoints: ( small: 0, medium: 640px, large: 1024px, xlarge: 1200px, xxlarge: 1440px, ); $breakpoint-classes: (small medium large);
so trying achieve, change value of medium
768
, , if want, increase large
. note array of breakpoint classes doesn't contain xlarge
, xxlarge
default - if want these additional classes add them array. can define own if need to.
Comments
Post a Comment