fix: The handset mode overlay is visible a split second for every call

This commit is contained in:
Valere
2025-12-02 14:14:28 +01:00
parent f05d4b158e
commit 0e04fd9433

View File

@@ -2,7 +2,7 @@
position: fixed; position: fixed;
z-index: var(--call-view-overlay-layer); z-index: var(--call-view-overlay-layer);
inset: 0; inset: 0;
display: flex; display: none;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@@ -12,6 +12,7 @@
@keyframes fade-in { @keyframes fade-in {
from { from {
opacity: 0; opacity: 0;
display: flex;
} }
to { to {
opacity: 1; opacity: 1;