Conditionally add top padding to Android addons icons

This commit is contained in:
nitrohorse
2019-08-09 22:27:04 -07:00
parent bbea0bc34a
commit 9849216ed6
2 changed files with 13 additions and 3 deletions

View File

@ -183,3 +183,13 @@ footer {
margin-right: 1rem;
}
}
.pad-top-on-lg {
padding-top: 0px;
}
@media only screen and (min-width: 992px) {
.pad-top-on-lg {
padding-top: 50px;
}
}