Skip to content
3 changes: 2 additions & 1 deletion src/room/EarpieceOverlay.module.css
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its nice to see that simplifying the css improved it.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
position: fixed;
z-index: var(--call-view-overlay-layer);
inset: 0;
display: flex;
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
Expand All @@ -12,6 +12,7 @@
@keyframes fade-in {
from {
opacity: 0;
display: flex;
}
to {
opacity: 1;
Expand Down
Loading