mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-29 10:40:23 +00:00
Wrap @viewport with @at-root for nested import
See https://github.com/twbs/bootstrap-sass/pull/805
This commit is contained in:
parent
b9ed61854c
commit
b832c3cb97
1 changed files with 7 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue