1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-31 04:07:55 +01:00

Closes #194 - fixes padding on top of page when bootstrap used at a width less than 1000px

This commit is contained in:
Cameron 2013-05-04 12:53:04 -07:00
parent 5d823a2de5
commit d651d780c3

View File

@ -1,5 +1,12 @@
/* */
body { padding-top: 75px; padding-bottom: 40px; }
body { padding-bottom: 40px; }
@media (min-width: 1000px){
body { padding-top: 75px; }
}
.well { padding:10px; }
footer { padding:60px }