Removes excessive padding in footer on mobile view - Fixes issue #12631 (#13021)

This commit is contained in:
Lilith 2021-03-15 11:04:03 +01:00 committed by GitHub
parent 0dd39e2b3d
commit a503782e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -364,6 +364,10 @@ footer {
.logo {
color: #c3c0c7;
}
@media screen and (max-width: 770px) {
padding-left: 1em;
padding-right: 1em;
}
}
}
</style>