From d2470b157f84844539c34adfaf77548069f47bd0 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:29:53 +0400 Subject: feat/frontend: tablet breakpoints (#285) --- frontend/src/components/Summary.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/components/Summary.tsx') diff --git a/frontend/src/components/Summary.tsx b/frontend/src/components/Summary.tsx index 72b5bf0..922960b 100644 --- a/frontend/src/components/Summary.tsx +++ b/frontend/src/components/Summary.tsx @@ -140,11 +140,11 @@ const Summary: React.FC = ({ selectedRun, setSelectedRun, data })
Difficulty - {data.map.difficulty <= 2 && (Very easy)} + {data.map.difficulty <= 2 && (Very Easy)} {data.map.difficulty > 2 && data.map.difficulty <= 4 && (Easy)} {data.map.difficulty > 4 && data.map.difficulty <= 6 && (Medium)} {data.map.difficulty > 6 && data.map.difficulty <= 8 && (Hard)} - {data.map.difficulty > 8 && data.map.difficulty <= 10 && (Very hard)} + {data.map.difficulty > 8 && data.map.difficulty <= 10 && (Very Hard)}
{data.map.difficulty <= 2 ? (
) : (
)} {data.map.difficulty > 2 && data.map.difficulty <= 4 ? (
) : (
)} -- cgit v1.2.3