From d42c8b528eb595101954f478e0024e3f079f6fbf Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 22 Mar 2017 19:19:26 +0100 Subject: first implementation of fun stats site --- .../assets/bootstrap/scss/bootstrap-grid.scss | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 templates/assets/bootstrap/scss/bootstrap-grid.scss (limited to 'templates/assets/bootstrap/scss/bootstrap-grid.scss') diff --git a/templates/assets/bootstrap/scss/bootstrap-grid.scss b/templates/assets/bootstrap/scss/bootstrap-grid.scss new file mode 100644 index 0000000..2ba6858 --- /dev/null +++ b/templates/assets/bootstrap/scss/bootstrap-grid.scss @@ -0,0 +1,37 @@ +// Bootstrap Grid only +// +// Includes relevant variables and mixins for the flexbox grid +// system, as well as the generated predefined classes (e.g., `.col-sm-4`). + +// +// Box sizing, responsive, and more +// + +@at-root { + @-ms-viewport { width: device-width; } +} + +html { + box-sizing: border-box; + -ms-overflow-style: scrollbar; +} + +*, +*::before, +*::after { + box-sizing: inherit; +} + +@import "custom"; +@import "variables"; + +// +// Grid mixins +// + +@import "mixins/breakpoints"; +@import "mixins/grid-framework"; +@import "mixins/grid"; + +@import "grid"; +@import "utilities/flex"; -- cgit v1.3.1