mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-17 20:39:19 +00:00
By adding viewport-fit=cover to the <meta name="viewport"> header, the page now requests to be displayed edge-to-edge across the entire screen. This gives us control over what we display around camera cut-outs and system navigation UI, if the user agent supports it. I then adjusted the styles of various UI elements to ensure that they still lie within the screen's safe area.
50 lines
927 B
CSS
50 lines
927 B
CSS
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.layer {
|
|
block-size: 100%;
|
|
}
|
|
|
|
.spotlight {
|
|
block-size: 100%;
|
|
inline-size: 100%;
|
|
}
|
|
|
|
.pip {
|
|
position: absolute;
|
|
inline-size: 135px;
|
|
block-size: 160px;
|
|
/* Ensure that PiP lies within the safe area */
|
|
inset: calc(env(safe-area-inset-top) + var(--cpd-space-4x))
|
|
var(--content-inset-right)
|
|
calc(env(safe-area-inset-bottom) + var(--cpd-space-4x))
|
|
var(--content-inset-left);
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.pip {
|
|
inline-size: 180px;
|
|
block-size: 135px;
|
|
}
|
|
}
|
|
|
|
.pip[data-block-alignment="start"] {
|
|
inset-block-end: unset;
|
|
}
|
|
|
|
.pip[data-block-alignment="end"] {
|
|
inset-block-start: unset;
|
|
}
|
|
|
|
.pip[data-inline-alignment="start"] {
|
|
inset-inline-end: unset;
|
|
}
|
|
|
|
.pip[data-inline-alignment="end"] {
|
|
inset-inline-start: unset;
|
|
}
|