-
Notifications
You must be signed in to change notification settings - Fork 62
Fix no pull to refresh #459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
451a7aa
95d7f3d
d925b1c
dd48a41
38ff496
1d21e7b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,10 @@ | |
| * fill visible viewport | ||
| * https://developers.google.com/web/updates/2016/12/url-bar-resizing | ||
| */ | ||
| @apply h-full overflow-hidden; | ||
| @apply h-full; | ||
|
|
||
| /* prevent horizontal scrolling, e.g. when drawer is open */ | ||
| @apply overflow-x-hidden; | ||
|
Comment on lines
+125
to
+126
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't notice this, what is it for?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'd have to test the branch as it was in be22dc8. We have to clip the overflow horizontally because we have a couple of animations which translate the UI horizontally:
Without this you can scroll the whole page horizontally. |
||
| } | ||
|
|
||
| ::-webkit-scrollbar { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for the bug previously addressed in #18