Commit b832c3cb authored by Gleb Mazovetskiy's avatar Gleb Mazovetskiy

Wrap `@viewport` with `@at-root` for nested import

See https://github.com/twbs/bootstrap-sass/pull/805
parent b9ed6185
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment