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:
parent
340d51e4e0
commit
c76ff5c994
|
@ -1,6 +1,5 @@
|
||||||
.body-page {
|
.body-page {
|
||||||
/* covers /about, /faq, /guidelines, /tos, /privacy, and login-required */
|
/* covers /about, /faq, /guidelines, /tos, /privacy, and login-required */
|
||||||
width: 100%;
|
|
||||||
max-width: 700px;
|
max-width: 700px;
|
||||||
background: var(--d-content-background);
|
background: var(--d-content-background);
|
||||||
.about-page & {
|
.about-page & {
|
||||||
|
|
Loading…
Reference in New Issue