21 lines
307 B
CSS
21 lines
307 B
CSS
/* Layout structure */
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1 0 auto;
|
|
padding-bottom: 2rem; /* Space before footer */
|
|
padding-top: 0;
|
|
}
|
|
|
|
.footer {
|
|
flex-shrink: 0;
|
|
padding: 1rem 0;
|
|
background-color: #f8f9fa !important;
|
|
} |