UI: Decrease content padding top on small screens (#4749)

If the viewport height is less than 800px, decrease the content padding top for breakpoints L and on.
This commit is contained in:
d11n 2023-03-08 13:37:25 +01:00 committed by GitHub
parent 98d62e826b
commit d6e5ee2851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -676,6 +676,12 @@
}
}
@media (min-width: 992px) and (max-height: 799px) {
:root {
--content-padding-top: 1.25rem;
}
}
@media (max-width: 449px) {
#StoreSelector {
max-width: 40vw;