You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
@import '../../../styles/mixins'; |
|
|
|
.layout { |
|
// this margin is for fixed header |
|
padding-top: var(--header-height); |
|
background-color: var(--theme-color-main-background); |
|
height: 100vh; |
|
display: flex; |
|
position: relative; |
|
|
|
// add some spacing between the last row of content and the footer |
|
.footerContainer { |
|
margin-top: 5em; |
|
} |
|
}
|
|
|