35 lines
426 B
SCSS
35 lines
426 B
SCSS
|
.main-content {
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
}
|
||
|
|
||
|
.bg-white {
|
||
|
background-color: white;
|
||
|
}
|
||
|
|
||
|
@media (max-width:$screen-lg) {
|
||
|
.component.download {
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.component.download > .container {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.component.download .download-mobile-image {
|
||
|
max-width: 99%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
z-index: -1;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|