fomantic / Fomantic-UI-SASS

Fomantic UI, converted to SASS and ready to drop into Rails & Compass.
https://fomantic-ui.com
MIT License
52 stars 14 forks source link

Change mobile breakpoints? #10

Open mrb opened 3 years ago

mrb commented 3 years ago

Seems like the 767.98 values are hard-coded for breakpoints (e.g. https://github.com/fomantic/Fomantic-UI-SASS/blob/master/app/assets/stylesheets/semantic-ui/collections/_grid.scss#L174) -- anyone know an easy way to tweak this?

shanecav84 commented 3 years ago

You might need to override the media query:

@media only screen and (max-width: 767.98px) {
  .ui.page.grid {
    width: default;
    padding-left: default;
    padding-right: default;
    margin-left: default;
    margin-right: default;
  }
}