diff --git a/src/components/timer/Timer.tsx b/src/components/timer/Timer.tsx index 676a2f8..0670024 100644 --- a/src/components/timer/Timer.tsx +++ b/src/components/timer/Timer.tsx @@ -26,39 +26,39 @@ const Timer = () => { }, []); return ( -
-
-
-
+
+
+
+
-

+

{days < 10 ? "0" + days : days}

- DAYS + DAYS
-
+
-

+

{hours < 10 ? "0" + hours : hours}

- HOURS + HOURS
-
+
-

+

{minutes < 10 ? "0" + minutes : minutes}

- MINUTES + MINUTES
-
+
-

+

{seconds < 10 ? "0" + seconds : seconds}

- SECONDS + SECONDS