Commit 89b4487c authored by Phil Hughes's avatar Phil Hughes

Merge branch '213587-ide-ipad-scroll-issue' into 'master'

Fix issues with scroll on iOS / iPad OS

See merge request gitlab-org/gitlab!34486
parents 27ae8d37 a0378fa1
......@@ -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