| 123456789101112131415161718192021222324252627282930313233343536 |
- // Grid breakpoints
- //
- // Define the minimum and maximum dimensions at which your layout will change,
- // adapting to different screen sizes, for use in media queries.
- $grid-breakpoints: (
- xs: 0,
- sm: 544px,
- md: 768px,
- lg: 992px,
- xl: 1200px
- ) !default;
- // Grid containers
- //
- // Define the maximum width of `.container` for different screen sizes.
- $container-max-widths: (
- sm: 576px,
- md: 720px,
- lg: 940px,
- xl: 1140px
- ) !default;
- // Grid columns
- //
- // Set the number of columns and specify the width of the gutters.
- $grid-columns: 12 !default;
- $grid-gutter-width: 30px !default;
- $enable-flex: false;
|