Skip to content

Commit

Permalink
fix ios scroll (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoFreireS authored Sep 19, 2023
1 parent 09bdf55 commit 0434924
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/app/a11y-styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/* needed because of ios safari issue https://stackoverflow.com/questions/3047337/does-overflowhidden-applied-to-body-work-on-iphone-safari */

html,
body {
overflow: hidden;
position: relative;
height: 100%;
}

/* Visually hidden but still readable by screen readers. */
.visually-hidden {
border: 0;
Expand Down

1 comment on commit 0434924

@Mazuh
Copy link
Member

@Mazuh Mazuh commented on 0434924 Sep 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related (but yet not enough) to #26

Please sign in to comment.