Merge pull request #212 from sabueso/master

Fixed bottom sidebar part when resize lower than 992px
pull/216/head
Christian Esperar 2016-06-22 21:38:16 +08:00 committed by GitHub
commit eb8bf2aa99
3 changed files with 12 additions and 9 deletions

View File

@ -665,9 +665,6 @@ footer {
padding: 15px 20px; padding: 15px 20px;
display: block; } display: block; }
@media (min-width: 768px) {
footer {
margin-left: 230px; } }
.nav-sm footer { .nav-sm footer {
margin-left: 70px; } margin-left: 70px; }
@ -1447,6 +1444,9 @@ span.right {
white-space: nowrap; white-space: nowrap;
position: relative; } position: relative; }
@media (min-width: 992px) {
footer {
margin-left: 230px; } }
@media (min-width: 992px) { @media (min-width: 992px) {
.tile_count .tile_stats_count { .tile_count .tile_stats_count {
margin-bottom: 10px; margin-bottom: 10px;

File diff suppressed because one or more lines are too long

View File

@ -691,11 +691,7 @@ footer {
padding: 15px 20px; padding: 15px 20px;
display: block; display: block;
} }
@media (min-width: 768px) {
footer {
margin-left: 230px;
}
}
.nav-sm footer { .nav-sm footer {
margin-left: 70px ; margin-left: 70px ;
} }
@ -1563,6 +1559,13 @@ span.right {
white-space: nowrap; white-space: nowrap;
position: relative; position: relative;
} }
@media (min-width: 992px) {
footer {
margin-left: 230px;
}
}
@media (min-width: 992px) { @media (min-width: 992px) {
.tile_count .tile_stats_count { .tile_count .tile_stats_count {
margin-bottom: 10px; margin-bottom: 10px;