mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
14 lines
221 B
CSS
14 lines
221 B
CSS
/*
|
|
* Force the footer to always stay on the bottom of the page regardless of how
|
|
* little content is on the page.
|
|
*/
|
|
body {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1 0 auto;
|
|
}
|