Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions stylesheets/_community/_features.less
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,25 @@
}

/* -------Main Content (modified for sticky company footer) ------ */
@height: 70px;

#content {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent company footer by it's height */
margin: 0 auto -70px;
margin: 0 auto -@height;
background-color: white;
}

#companyfooter-placeholder {
height: 70px;
height: @height;
margin-top: @height;
}

/* ------------------ Company Footer ------------------------- */
#companyfooter {
height: 70px;
height: @height;
background-color: #f3f3f3;
}

Expand Down