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

View File

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