1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- $grid-breakpoints: (
- // Extra small screen / phone
- xs: 0,
- // Small screen / phone
- sm: 544px,
- // Medium screen / tablet
- md: 768px,
- // Large screen / desktop
- lg: 992px,
- // Extra large screen / wide desktop
- xl: 1200px
- ) !default;
- $container-max-widths: (
- sm: 576px,
- md: 720px,
- lg: 940px,
- xl: 1140px
- ) !default;
- $grid-columns: 12 !default;
- $grid-gutter-width: 1.875rem !default;
- @import "variables";
- @import "mixins/clearfix";
- @import "mixins/breakpoints";
- @import "mixins/grid-framework";
- @import "mixins/grid";
- @import "grid";
|