10 lines
127 B
CSS
10 lines
127 B
CSS
|
/*for sticky footer*/
|
||
|
body {
|
||
|
display: flex;
|
||
|
min-height: 100vh;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
#wrapper {
|
||
|
flex: 1;
|
||
|
}
|