FIX: Don't let static pages overflow on some devices (#28751)

Static pages such as /about, /faqs, /tos etc. currently overflow horizontally on some Android devices (reproducible on Samsung Galaxy A11). It seems like the `width: 100%` property on `.body-page` is what causing the problem, and removing it doesn't seem to break anything on the various devices that I've tested (desktop, iOS, Android).
This commit is contained in:
Osama Sayegh 2024-09-05 10:29:32 +03:00 committed by GitHub
parent 340d51e4e0
commit c76ff5c994
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -1,6 +1,5 @@
.body-page {
/* covers /about, /faq, /guidelines, /tos, /privacy, and login-required */
width: 100%;
max-width: 700px;
background: var(--d-content-background);
.about-page & {