2023-06-20 20:56:37 -07:00
|
|
|
@import '../../../styles/mixins';
|
2023-01-16 03:37:21 +01:00
|
|
|
|
|
|
|
.layout {
|
2023-04-26 23:31:23 +01:00
|
|
|
// this margin is for fixed header
|
2023-05-18 12:13:26 -07:00
|
|
|
padding-top: var(--header-height);
|
2023-04-26 21:24:26 -07:00
|
|
|
background-color: var(--theme-color-main-background);
|
2023-07-09 21:07:35 +00:00
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
2023-05-19 17:34:23 -07:00
|
|
|
position: relative;
|
2023-04-27 15:35:21 -07:00
|
|
|
|
2023-05-19 17:34:23 -07:00
|
|
|
// add some spacing between the last row of content and the footer
|
|
|
|
.footerContainer {
|
|
|
|
margin-top: 5em;
|
|
|
|
}
|
2023-05-12 22:52:54 +01:00
|
|
|
}
|