Update bootstrap-grid.scss to include box-sizing and responsive changes (#21202)

This commit is contained in:
Mark Otto 2016-11-25 23:03:07 -08:00 committed by GitHub
parent ce18a66809
commit 308bc77dbb
1 changed files with 19 additions and 0 deletions

View File

@ -3,6 +3,25 @@
// Includes relevant variables and mixins for the regular (non-flexbox) grid
// system, as well as the generated predefined classes (e.g., `.col-4-sm`).
//
// 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;
}
//
// Variables