feat(ui): show server and browser date/time in toolbar

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Андрей Бобырев
2026-05-14 16:14:27 +03:00
parent 73b7d104d4
commit 1c22f89d5a
4 changed files with 116 additions and 0 deletions

View File

@@ -205,6 +205,35 @@ h1 {
flex-wrap: wrap;
}
.clock-strip {
display: flex;
flex-direction: column;
gap: 0.2rem;
padding: 0.45rem 0.75rem;
border-radius: 12px;
border: 1px solid var(--line);
background: rgba(255, 255, 255, 0.03);
font-size: 0.82rem;
line-height: 1.35;
}
.clock-row {
display: flex;
align-items: baseline;
gap: 0.5rem;
flex-wrap: wrap;
}
.clock-kind {
flex: 0 0 4.25rem;
}
.clock-time {
font-family: "JetBrains Mono", ui-monospace, monospace;
font-size: 0.84rem;
color: var(--text);
}
.pill {
display: inline-flex;
align-items: center;