Commit a0378fa1 authored by Himanshu Kapoor's avatar Himanshu Kapoor

Fix scrolling issue for iOS / iPad OS

Window height in iPad is actually less than 100vh because of the
presence of a bottom bar in the browser. Adding position: fixed
and max-height: 100% fixes this.
parent 1017521b
......@@ -25,6 +25,13 @@ $ide-commit-header-height: 48px;
@include str-truncated(250px);
}
.ide-layout {
// Fix for iOS 13+, the height of the page is actually less than
// 100vh because of the presence of the bottom bar
max-height: 100%;
position: fixed;
}
.ide-view {
position: relative;
margin-top: 0;
......
---
title: Fix issues with scroll on iOS / iPad OS
merge_request: 34486
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment