Skip to content

Commit

Permalink
Removed steps padding for narrow displays
Browse files Browse the repository at this point in the history
  • Loading branch information
skazi0 committed Sep 14, 2016
1 parent b37d5b8 commit f146a20
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions assets/app/features/upgrade/upgrade.less
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@
text-shadow: none;
}
.bottom-padding {
margin-bottom: -1000px;
padding-bottom: 1000px;
@media (max-width: 1199px) {
display: none;
}
@media (min-width: 1200px) {
margin-bottom: -1000px;
padding-bottom: 1000px;
}
}
}
}
Expand Down

0 comments on commit f146a20

Please sign in to comment.