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

[MM-27168] Cherry-pick of #6010 and remove previous -webkit-fill-available #6023

Merged
merged 2 commits into from
Jul 30, 2020
Merged
Changes from 1 commit
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
Next Next commit
[MM-27168] Set -webkit-fill-available when on iOS Safari and 100vh ot…
…herwise (#6010)

* Set -webkit-fill-available when on iOS Safari
Also set first div child of admin console as height 100%

* Unneeded ampersand

* This 100% does nothing
  • Loading branch information
fmunshi authored and fm2munsh committed Jul 30, 2020
commit 1ecc0f2fa2db45a8eee71cb489f5c4d080b1702b
5 changes: 5 additions & 0 deletions sass/routes/_admin-console.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
height: 100vh;
height: -webkit-fill-available;

// 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