From c69e6ab7c1292c71c743f3bac8bdc3410eaf31e1 Mon Sep 17 00:00:00 2001 From: David Baer Date: Thu, 25 Sep 2025 15:11:07 -0400 Subject: [PATCH] Fix solution display for GCF --- src/times.css | 2 +- src/times.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/times.css b/src/times.css index c6f0186..7113eba 100644 --- a/src/times.css +++ b/src/times.css @@ -1,4 +1,4 @@ -.solution { +.times .solution { padding: 16px; border-radius: 12px; background: white; diff --git a/src/times.tsx b/src/times.tsx index 0ab22f1..bffc92e 100644 --- a/src/times.tsx +++ b/src/times.tsx @@ -75,7 +75,7 @@ export function TimesPractice({maxNum} : TimesPracticeParams) { const [solution, setSolution] = useState(null) return ( -
+

Multiplication Practice

{factors === null ?

Loading...

:

What is {factors[0]} × {factors[1]}?

}