2023-01-16 05:37:21 +03:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
|
|
|
.layout {
|
2023-04-27 01:31:23 +03:00
|
|
|
// this margin is for fixed header
|
|
|
|
margin-top: 55px;
|
2023-04-27 07:24:26 +03:00
|
|
|
background-color: var(--theme-color-main-background);
|
2023-01-16 05:37:21 +03:00
|
|
|
@include screen(tablet) {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2023-04-27 01:31:23 +03:00
|
|
|
// this one is for fixed footer
|
2023-04-27 07:24:26 +03:00
|
|
|
margin-bottom: 30px;
|
2023-01-16 05:37:21 +03:00
|
|
|
}
|
2023-04-28 01:35:21 +03:00
|
|
|
|
|
|
|
@include screen(mobile) {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
|
|
|
footer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2023-01-16 05:37:21 +03:00
|
|
|
}
|