40 lines
774 B
SCSS
40 lines
774 B
SCSS
.app{
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
padding-bottom: 100px;
|
|
&:after{
|
|
content: '';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: url("./assets/img/bg/bg.svg");
|
|
z-index: 1;
|
|
}
|
|
&__block{
|
|
flex: 1 1 auto;
|
|
}
|
|
&__overlay{
|
|
position: fixed;
|
|
z-index: 5;
|
|
min-height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: var(--color-black-cc);
|
|
}
|
|
&__content{
|
|
max-width: var(--container);
|
|
margin: 0 auto;
|
|
padding: 0 50px;
|
|
@mixin responsive-l {
|
|
padding: 0 20px;
|
|
}
|
|
.m--indentation{
|
|
}
|
|
}
|
|
}
|