add offset for earpice overlay

This commit is contained in:
Timo
2025-07-16 15:53:05 +02:00
parent 5ee2bb1007
commit 67b70b92e4
2 changed files with 6 additions and 0 deletions

View File

@@ -61,3 +61,7 @@
.overlay > p {
text-align: center;
}
.spacer {
min-height: var(--cpd-space-32x);
}

View File

@@ -37,6 +37,8 @@ export const EarpieceOverlay: FC<Props> = ({ show, onBackToVideoPressed }) => {
>
{t("handset.overlay_back_button")}
</Button>
{/* This spacer is used to give the overlay an offset to the top. */}
<div className={styles.spacer} />
</div>
);
};