Skip to content

Commit

Permalink
Update bootstrap-grid.scss to include box-sizing and responsive chang…
Browse files Browse the repository at this point in the history
…es (#21202)
  • Loading branch information
mdo authored Nov 26, 2016
1 parent ce18a66 commit 308bc77
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scss/bootstrap-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 308bc77

Please sign in to comment.