/* Ensure HTML and body take up the full height */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
/* Ensure that the main content container is full height */
.uicore-body-content {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: space-between;
}
/* Footer must go to the bottom */
footer {
margin-top: auto;
width: 100%;
}