Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap v4 grid sizes / Sass List

I'm trying to use Bootstrap v4 variables in my project, but it is stored inside an array (_variables.scss):

$grid-breakpoints: (
  xs: 0,
  sm: 544px,
  md: 768px,
  lg: 992px,
  xl: 1200px
) !default;

How can I refer to it in my sass:

@media(max-width: $grid-breakpoints[xs]) {
  font-size: 20px;
}
like image 777
Rostislav Dascal Avatar asked Sep 17 '16 11:09

Rostislav Dascal


People also ask

What is the grid size in Bootstrap 4?

Bootstrap's grid system allows up to 12 columns across the page.

Does Bootstrap 4 support Sass and flexbox?

Bootstrap 4 is now based on Flexbox.

How do I change the grid size in Bootstrap?

Go to the Customize menu on Bootstrap website and choose your preferred size. In Less Variables -> Grid system you can find a form to input your preferred sizes. Then you can easily download the preferred grid. Hope this will help.


1 Answers

You can use $map-get..

@media (min-width: map-get($grid-breakpoints, xs)) and (max-width: map-get($grid-breakpoints, sm)){
  [class*='col-'] {
    font-size: 20px;
   }
}

$grid-breakpoints demo

There are also several breakpoint mixins in Bootstrap 4 that can be used to target a specific breakpoint...

@include media-breakpoint-between(sm, md){
  ...
}

@include media-breakpoint-only(lg){
  ...
}

media-breakpoint mixin demo

like image 84
Zim Avatar answered Oct 05 '22 23:10

Zim