Skip to content

Commit

Permalink
fix: discussion page showing horizontal scroll on iOS (#3821)
Browse files Browse the repository at this point in the history
Co-authored-by: David Wheatley <[email protected]>
  • Loading branch information
SychO9 and davwheat authored May 8, 2023
1 parent 3accdc3 commit 80b34d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions framework/core/less/common/scaffolding.less
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 80b34d1

Please sign in to comment.