From 1f4e12298ed562a60146a92936ccc1fcd3a50878 Mon Sep 17 00:00:00 2001 From: Simon Franken Date: Fri, 13 Mar 2026 17:46:53 +0100 Subject: [PATCH 1/2] fix --- frontend/src/components/Layout.tsx | 4 ++-- frontend/src/components/TimerWidget.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 508398f..c4b9883 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -4,9 +4,9 @@ import { TimerWidget } from './TimerWidget'; export function Layout() { return ( -
+
-
+
diff --git a/frontend/src/components/TimerWidget.tsx b/frontend/src/components/TimerWidget.tsx index b4dee5f..7146bf1 100644 --- a/frontend/src/components/TimerWidget.tsx +++ b/frontend/src/components/TimerWidget.tsx @@ -147,7 +147,7 @@ export function TimerWidget() { if (isLoading) { return ( -
+
@@ -156,7 +156,7 @@ export function TimerWidget() { } return ( -
+
{ongoingTimer ? ( <> -- 2.49.1 From 1964f76f74260f03d095125f2d33f4cf07dabdf3 Mon Sep 17 00:00:00 2001 From: Simon Franken Date: Fri, 13 Mar 2026 17:07:32 +0000 Subject: [PATCH 2/2] fix: add bg-gray-50 back to Layout --- frontend/src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index c4b9883..5e96334 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -4,7 +4,7 @@ import { TimerWidget } from './TimerWidget'; export function Layout() { return ( -
+
-- 2.49.1