diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-20 22:20:49 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-20 22:20:49 +0900 |
| commit | a92aa377d536fe67fa1ff485566da38cf94328bb (patch) | |
| tree | 3436ea59d88446c8fd0c5ab743c0cd82a959ea51 /frontend/app/components/Gaming/ScoreBar.tsx | |
| parent | cca0f63e50684d6806697589b620ee4b4c1b21b5 (diff) | |
| download | phperkaigi-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.tar.gz phperkaigi-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.tar.zst phperkaigi-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.zip | |
feat(frontend): tweak score bar
Diffstat (limited to 'frontend/app/components/Gaming/ScoreBar.tsx')
| -rw-r--r-- | frontend/app/components/Gaming/ScoreBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/Gaming/ScoreBar.tsx b/frontend/app/components/Gaming/ScoreBar.tsx index cacdd50..6a291cd 100644 --- a/frontend/app/components/Gaming/ScoreBar.tsx +++ b/frontend/app/components/Gaming/ScoreBar.tsx @@ -24,7 +24,7 @@ export default function ScoreBar({ scoreA, scoreB, bgA, bgB }: Props) { return ( <div className={`w-full ${bgB}`}> - <div className={`h-6 ${bgA}`} style={{ width: `${scoreRatio}%` }}></div> + <div className={`h-10 ${bgA}`} style={{ width: `${scoreRatio}%` }}></div> </div> ); } |
