mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-10 23:54:08 +02:00
Update bootstrap-grid.scss to include box-sizing and responsive changes (#21202)
This commit is contained in:
19
scss/bootstrap-grid.scss
vendored
19
scss/bootstrap-grid.scss
vendored
@@ -3,6 +3,25 @@
|
|||||||
// Includes relevant variables and mixins for the regular (non-flexbox) grid
|
// Includes relevant variables and mixins for the regular (non-flexbox) grid
|
||||||
// system, as well as the generated predefined classes (e.g., `.col-4-sm`).
|
// 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
|
// Variables
|
||||||
|
Reference in New Issue
Block a user