From 3670bc63e748142902d9d41da49603dc9ac87d04 Mon Sep 17 00:00:00 2001 From: derekc Date: Sat, 28 Feb 2026 11:44:58 -0800 Subject: [PATCH] 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 --- frontend/src/views/TVView.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/views/TVView.vue b/frontend/src/views/TVView.vue index 048fe1c..212d0d8 100644 --- a/frontend/src/views/TVView.vue +++ b/frontend/src/views/TVView.vue @@ -313,6 +313,14 @@ onMounted(async () => { 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 */ .tv-schedule-list :deep(.block-title) { font-size: 1.2rem; } .tv-schedule-list :deep(.block-time) { font-size: 1rem; }