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
|
2023-05-18 22:13:26 +03:00
|
|
|
padding-top: var(--header-height);
|
2023-04-27 07:24:26 +03:00
|
|
|
background-color: var(--theme-color-main-background);
|
2023-05-22 00:11:53 +03:00
|
|
|
min-height: 100dvh;
|
|
|
|
|
2023-05-20 03:34:23 +03:00
|
|
|
position: relative;
|
2023-04-28 01:35:21 +03:00
|
|
|
|
2023-05-20 03:34:23 +03:00
|
|
|
// add some spacing between the last row of content and the footer
|
|
|
|
.footerContainer {
|
|
|
|
margin-top: 5em;
|
|
|
|
}
|
2023-05-13 00:52:54 +03:00
|
|
|
}
|