Call Clock overlay (used for debugging)

This commit is contained in:
Matthew Hodgson
2026-05-11 22:35:05 +00:00
parent b89b696dbb
commit dd9b961546
2 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/*
Copyright 2026 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
.clock {
position: fixed;
inset-block-start: var(--cpd-space-6x);
inset-inline-start: var(--cpd-space-6x);
z-index: 2147483647;
padding: var(--cpd-space-2x) var(--cpd-space-3x);
border-radius: var(--cpd-space-2x);
background: rgba(0, 0, 0, 0.6);
color: #fff;
font-size: var(--font-size-body);
font-variant-numeric: tabular-nums;
line-height: 1;
pointer-events: none;
user-select: none;
}