You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/assets/stylesheets/public_dashboard/public-body.scss

32 lines
666 B

@import "../variables/mixins";
@import "../variables/colors";
@import "../variables/sizes";
// The body for public dashboard, to get the sticky footer in case of content do not fill up the viewport.
//
// --------------------------------------------------------------------------------------------------------------------
.PublicBody {
display: flex;
flex-direction: column;
min-height: 100vh;
@media (max-width: 759px) {
overflow-y: visible;
}
}
.PublicBody--grey {
background: #F9F9F9;
}
.PublicBody-content {
display: flex;
flex-grow: 1;
margin-top: 120px;
}
.PublicBody.PublicBody--grey .PublicBody-content {
background: #F9F9F9;
}