Make mobile layout post width fix only apply in mobile mode to prevent bug

This commit is contained in:
Butter Cat 2024-07-26 14:34:36 -04:00
parent e987f1dc4f
commit 4e7c401230
No known key found for this signature in database
GPG key ID: FF37BE4FDDB74419

View file

@ -359,8 +359,12 @@ main {
#column_one { #column_one {
width: 100%; width: 100%;
border-radius: 5px; border-radius: 5px;
max-width: 750px;
overflow: inherit; overflow: inherit;
} }
@media screen and (max-width: 800px) {
#column_one { max-width: unset; }
}
/* Body footer. */ /* Body footer. */
body > footer { body > footer {