15 lines
143 B
SCSS
15 lines
143 B
SCSS
|
html {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
min-height: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.footer-push {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
|