fix: discussion page showing horizontal scroll on iOS (#3821)

Co-authored-by: David Wheatley <david@davwheat.dev>
This commit is contained in:
Sami Mazouz 2023-05-08 09:28:32 +01:00 committed by GitHub
parent 3accdc322c
commit 80b34d1164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,13 @@
}
}
// Fix to prevent horizontal scrolling bug on iOS
@media @phone {
html {
overflow-x: hidden;
}
}
body {
background: var(--body-bg);
color: var(--text-color);