diff --git a/index.html b/index.html index 0c402c5..78017ef 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,12 @@ + + + Timer Score diff --git a/src/App.tsx b/src/App.tsx index ef2a6cc..d1b9a59 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,10 +13,8 @@ import { PauseIcon, PlayIcon, ResetIcon } from "./Icons"; function App() { return ( -
- +
-
); } @@ -102,11 +100,11 @@ function TimerInternal({ return (
-
+
status === "STOPPED" && setEditing(true)} className={cn( - "text-6xl bg-neutral-200 rounded font-black w-full text-center", + "font-sans text-8xl tracking-tighter bg-neutral-200 rounded font-black w-full text-center", editing ? "text-black" : Number(duration.minutes ?? 0) < 1 diff --git a/src/index.css b/src/index.css index 8d3cdd8..66d65ab 100644 --- a/src/index.css +++ b/src/index.css @@ -16,3 +16,9 @@ @apply w-3; } } + +@layer utilities { + gap-1 { + gap: 0.15em; + } +} diff --git a/tailwind.config.js b/tailwind.config.js index cc9120c..1b45e64 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,11 @@ export default { content: ["./src/**/*.{html,js,ts,tsx}"], theme: { - extend: {}, + extend: { + fontFamily: { + display: ["'Roboto Mono', serif"], + }, + }, }, plugins: [], };