mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
8e9a9a5960
- Creates new flexbox grid Sass file in our docs assets - Updates the Gruntfile to compile said new Sass file and minify the output - Update notice on flexbox docs page for how it works - Only enable compiled flexbox grid CSS in hosted docs site, not in dev (for easier and specific debugging of all flexbox features)
23 lines
393 B
SCSS
23 lines
393 B
SCSS
// Bootstrap Grid only
|
|
//
|
|
// Includes relevant variables and mixins for the regular (non-flexbox) grid
|
|
// system, as well as the generated predefined classes (e.g., `.col-4-sm`).
|
|
|
|
|
|
//
|
|
// Variables
|
|
//
|
|
|
|
@import "custom";
|
|
@import "variables";
|
|
|
|
//
|
|
// Grid mixins
|
|
//
|
|
|
|
@import "mixins/clearfix";
|
|
@import "mixins/breakpoints";
|
|
@import "mixins/grid-framework";
|
|
@import "mixins/grid";
|
|
|
|
@import "grid";
|