Skip to content

Commit

Permalink
[mobile] Prevent the IDE from scrolling along with the text (e.g. on …
Browse files Browse the repository at this point in the history
…iPad)

Ref: #3557

Signed-off-by: Jan Keromnes <[email protected]>
  • Loading branch information
jankeromnes committed Jul 18, 2019
1 parent 613069f commit fbf07d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/core/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
body {
margin: 0;
padding: 0;
position: fixed;
overflow: hidden;
font-family: var(--theia-ui-font-family);
background: var(--theia-layout-color0);
Expand All @@ -42,7 +43,7 @@ body {
}

.theia-ApplicationShell {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand All @@ -51,7 +52,7 @@ body {
}

.theia-preload {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand Down

0 comments on commit fbf07d5

Please sign in to comment.