Skip to content

Commit

Permalink
Merge pull request #113 from twbs/at-root-group
Browse files Browse the repository at this point in the history
Wrap `@viewport` with `@at-root` for nested import support
  • Loading branch information
mdo committed Apr 29, 2015
2 parents 9e1c4f0 + b832c3c commit 35f45ba
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@ html {
//
// See http://getbootstrap.com/getting-started/#support-ie10-width for the relevant hack.

@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }
@viewport { width: device-width; }

@at-root {
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }
@viewport { width: device-width; }
}

//
// Reset HTML, body, and more
Expand Down

0 comments on commit 35f45ba

Please sign in to comment.