Skip to content

Commit

Permalink
Merge pull request #81 from bunq/bunq/doc#75_momentum_scrolling
Browse files Browse the repository at this point in the history
Added momentum scrolling on iOS #75
  • Loading branch information
kojoru authored Nov 9, 2018
2 parents 9fcb735 + 0512ab6 commit bea2569
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build/asset-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/service-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion build/static/css/main.bced30ad.css.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/static/css/main.d1890e87.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/main.506c6cdf.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/scss/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ body {
flex-grow: 1;
height: $height-viewport;
overflow-x: hidden;
overflow-y: auto;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}

.information-container {
Expand Down
3 changes: 2 additions & 1 deletion src/scss/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
padding-right: $spacer-medium;
background-color: $color-grey-dark;
color: $color-white;
overflow-y: auto;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;

@media (min-width: $width-viewport-small) {
display: flex;
Expand Down

0 comments on commit bea2569

Please sign in to comment.