1
0
mirror of https://github.com/flarum/core.git synced 2025-08-01 22:20:21 +02:00

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

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);