1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-12-22 09:13:19 +01:00

sticky footer

This commit is contained in:
Matthias Kretschmann 2018-04-03 20:17:55 +02:00
parent 13c52d960b
commit b1537caa40
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 8 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import Footer from './components/molecules/Footer'
const App = () => (
<FadeIn>
<div>
<div className="app">
<Routes />
<Footer />
</div>

View File

@ -96,6 +96,13 @@ svg {
height: auto;
}
.app {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.screen {
flex: 1;
padding: $spacer;
}