liebling/src/sass/layouts/_fullscreen.scss
2019-05-21 21:50:29 +02:00

26 lines
396 B
SCSS

.l-fullscreen {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.l-fullscreen__content {
text-align: center;
padding: 0 $mobile-space;
@include respond-to('medium') {
max-width: 500px;
}
&.in-subscribe-page {
@include respond-to('medium') {
padding: 0;
}
@include respond-to('large') {
max-width: 820px;
}
}
}