devdocs/assets/stylesheets/components/_app.scss

18 lines
334 B
SCSS
Raw Normal View History

2013-10-24 20:25:52 +02:00
._app {
position: relative;
z-index: 1;
height: 100%;
overflow: hidden;
-webkit-transition: opacity .2s;
transition: opacity .2s;
@extend %border-box;
2017-09-10 00:14:23 +02:00
._booting & { opacity: 0; }
._max-width & {
margin: 0 auto;
max-width: $maxWidth;
box-shadow: 1px 0 $headerBorder, -1px 0 $headerBorder;
}
2013-10-24 20:25:52 +02:00
}