diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-18 13:32:18 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-18 13:32:18 +0900 |
| commit | e20a0196cdd4a19636a12bcc392d79a803fd868e (patch) | |
| tree | 189ecf430f3ae81ca759f4784ae26f7c74330b3c /frontend/app/components | |
| parent | 67c7233b20263650f4956b43d8935303bb285cd8 (diff) | |
| download | iosdc-japan-2024-albatross-e20a0196cdd4a19636a12bcc392d79a803fd868e.tar.gz iosdc-japan-2024-albatross-e20a0196cdd4a19636a12bcc392d79a803fd868e.tar.zst iosdc-japan-2024-albatross-e20a0196cdd4a19636a12bcc392d79a803fd868e.zip | |
feat(frontend): improve styling of starting screen
Diffstat (limited to 'frontend/app/components')
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx index 8282fb4..197d8b4 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx @@ -7,10 +7,8 @@ export default function GolfWatchAppStarting({ }: Props) { return ( <div className="min-h-screen bg-gray-100 flex items-center justify-center"> - <div className="text-center"> - <h1 className="text-4xl font-bold text-black-600 mb-4"> - Starting... ({timeLeft} s) - </h1> + <div className="text-center text-black font-black text-10xl animate-ping"> + {timeLeft} </div> </div> ); |
