Make TV dashboard timer larger

Scale timer ring up to 420px to fill the column, increase countdown
digits to 5.5rem and label to 1.4rem.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-28 11:44:58 -08:00
parent c8a965dadf
commit 3670bc63e7

View File

@@ -313,6 +313,14 @@ onMounted(async () => {
max-height: 60vh; max-height: 60vh;
} }
/* Expand timer to fill the column */
.tv-timer-col :deep(.timer-wrap) {
width: min(100%, 420px);
height: min(100%, 420px);
}
.tv-timer-col :deep(.timer-time) { font-size: 5.5rem; }
.tv-timer-col :deep(.timer-label) { font-size: 1.4rem; }
/* Make schedule block text larger for TV viewing */ /* Make schedule block text larger for TV viewing */
.tv-schedule-list :deep(.block-title) { font-size: 1.2rem; } .tv-schedule-list :deep(.block-title) { font-size: 1.2rem; }
.tv-schedule-list :deep(.block-time) { font-size: 1rem; } .tv-schedule-list :deep(.block-time) { font-size: 1rem; }