From 2176acd9245139fde3bbf9a61a1e565e284c2cfb Mon Sep 17 00:00:00 2001 From: Tiffany Barclay Date: Sun, 25 Dec 2022 01:05:48 +1300 Subject: [PATCH] Clean up timer page styling Closes #110 --- TimerPage.tsx | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/TimerPage.tsx b/TimerPage.tsx index 4b551e7..2b8d658 100644 --- a/TimerPage.tsx +++ b/TimerPage.tsx @@ -41,7 +41,7 @@ export default function TimerPage() { }, [minutes, seconds]) const left = useMemo(() => { - return Dimensions.get('screen').width * 0.5 - 85 + return Dimensions.get('screen').width * 0.5 - 60 }, []) return ( @@ -54,13 +54,11 @@ export default function TimerPage() { justifyContent: 'center', alignItems: 'center', }}> - - - {minutes}:{seconds} - - + + {minutes}:{seconds} + -