Skip to content

Commit

Permalink
Merge pull request #10729 from lipis/patch-2
Browse files Browse the repository at this point in the history
Removed the unnecessary override and the !important from .wrap
  • Loading branch information
mdo committed Oct 21, 2013
2 parents 9a0849d + c6eca2c commit 976866d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions examples/sticky-footer-navbar/sticky-footer-navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ body {
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
height: auto;
/* Negative indent footer by its height */
margin: 0 auto -60px;
/* Pad bottom by footer height */
Expand Down Expand Up @@ -43,4 +42,4 @@ body {

code {
font-size: 80%;
}
}
5 changes: 2 additions & 3 deletions examples/sticky-footer/sticky-footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ body {
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
height: auto;
/* Negative indent footer by its height */
margin: 0 auto -60px;
/* Pad bottom by footer height */
Expand All @@ -36,4 +35,4 @@ body {
}
.container .credit {
margin: 20px 0;
}
}

0 comments on commit 976866d

Please sign in to comment.