2023-01-16 03:37:21 +01:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
|
|
|
.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-05-18 12:13:26 -07:00
|
|
|
min-height: 100vh;
|
|
|
|
position: relative;
|
2023-04-27 15:35:21 -07:00
|
|
|
|
2023-05-18 12:13:26 -07:00
|
|
|
// add some spacing between the last row of content and the footer
|
|
|
|
:global(.ant-row) {
|
|
|
|
&:last-of-type {
|
|
|
|
margin-bottom: 5em;
|
|
|
|
}
|
|
|
|
}
|
2023-05-12 22:52:54 +01:00
|
|
|
}
|