From 026973eab9adb873a16d2c7efbe23a96fbf0a45a Mon Sep 17 00:00:00 2001 From: hikahana <22.h.hanada.nutfes@gmail.com> Date: Tue, 12 Nov 2024 15:52:14 +0000 Subject: [PATCH] fix card unified width --- app/src/app/page.tsx | 14 +++++++------- app/src/components/view/Timer.tsx | 13 +++++++------ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/app/src/app/page.tsx b/app/src/app/page.tsx index e93f9d9..f0e446c 100755 --- a/app/src/app/page.tsx +++ b/app/src/app/page.tsx @@ -65,25 +65,25 @@ export default function Home() { }, []); return ( -
+
{isLoading ? ( -
+
Loading...
) : ( -
+
{assignment && ( // fixme [0]番目を参照しているがお題ごとに可変的にする必要あり。 - + )}
)} 今日のお題

撮影してスコアを競おう!

-

Labyrinthine

+

{assignment[0]?.english}

- +

過去のチャレンジ

{myScore.length === 0 ? (
diff --git a/app/src/components/view/Timer.tsx b/app/src/components/view/Timer.tsx index 15143b8..6952ab1 100644 --- a/app/src/components/view/Timer.tsx +++ b/app/src/components/view/Timer.tsx @@ -41,12 +41,13 @@ const Timer: FC = ({ assignTime }) => { const formattedSeconds = String(ss).padStart(2, "0"); return ( - -
-
お題が出てからの経過時間
-
- {formattedHours}:{formattedMinutes}: - {formattedSeconds} + +
+
経過時間
+
+ {formattedHours}: + {formattedMinutes}: + {formattedSeconds}