Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

[MM-27168] Set -webkit-fill-available when on iOS Safari and 100vh otherwise #6010

Merged
merged 3 commits into from
Jul 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sass/routes/_admin-console.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
flex-direction: column;
height: 100vh;

// Fix for Safari on iOS MM-24361
@supports (-webkit-touch-callout: none) {
height: -webkit-fill-available;
}

.announcement-bar--fixed & {
height: calc(100vh - 32px);
}
Expand Down