Skip to content

Commit

Permalink
fix: Allow to refresh page by pull gesture on Mobile - MEED-7328 - Me…
Browse files Browse the repository at this point in the history
…eds-io/meeds#2314 (#813)

Prior to this change, the body overflow CSS style value wasn't allowing
to use Mobile Browser builtin feature gesture. This change will enable
it by deleting the overflow hidden property value on Mobile and Tablet
devices.
  • Loading branch information
boubaker committed Aug 19, 2024
1 parent 28ecfc6 commit 077abde
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions platform-ui-skin/src/main/webapp/skin/less/core/reset.less
Original file line number Diff line number Diff line change
Expand Up @@ -461,4 +461,10 @@ address {
}
.btn.disabled, .btn[disabled] {
opacity: .65;
}

@media (max-width: @maxTabletWidth) {
body {
overflow: auto;
}
}

0 comments on commit 077abde

Please sign in to comment.