diff options
| author | Mark Otto <[email protected]> | 2015-04-29 11:30:09 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-04-29 11:30:09 -0700 |
| commit | 35f45bafede67f2e3114d67527fce7679bc87706 (patch) | |
| tree | 046bb0e7d52fc5e808f5e450ccd820903189283e | |
| parent | 9e1c4f0557b623f8a78bc5c51518c7cabe5ccc01 (diff) | |
| parent | b832c3cb97b391bf4274cd8048a173d57a00c537 (diff) | |
| download | bootstrap-35f45bafede67f2e3114d67527fce7679bc87706.tar.xz bootstrap-35f45bafede67f2e3114d67527fce7679bc87706.zip | |
Merge pull request #113 from twbs/at-root-group
Wrap `@viewport` with `@at-root` for nested import support
| -rw-r--r-- | scss/_reboot.scss | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 16e9603f3..f25e2cdb1 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -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 |
