From 8e9a9a5960697cd8cd698ca6b4d8733bd7872de6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 26 Jul 2016 21:09:39 -0700 Subject: Enable flexbox grid CSS on our docs page - 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) --- docs/assets/scss/flex-grid.scss | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/assets/scss/flex-grid.scss (limited to 'docs/assets') diff --git a/docs/assets/scss/flex-grid.scss b/docs/assets/scss/flex-grid.scss new file mode 100644 index 000000000..7d0d9f4b8 --- /dev/null +++ b/docs/assets/scss/flex-grid.scss @@ -0,0 +1,24 @@ +// Bootstrap flexbox grid for our docs page + + +// +// Variables +// + +@import "custom"; +@import "variables"; + +// Override for flexbox mode +$enable-flex: true; + + +// +// Grid mixins +// + +@import "mixins/clearfix"; +@import "mixins/breakpoints"; +@import "mixins/grid-framework"; +@import "mixins/grid"; + +@import "grid"; -- cgit v1.2.3