assettrack/static/css/layout.css
candifloss 18d7280d72 Fix: Footer style
The footer no longer covers the page contents
2025-04-07 09:53:06 +05:30

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;
}