aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-20 22:20:49 +0900
committernsfisis <nsfisis@gmail.com>2025-03-20 22:20:49 +0900
commita92aa377d536fe67fa1ff485566da38cf94328bb (patch)
tree3436ea59d88446c8fd0c5ab743c0cd82a959ea51 /frontend
parentcca0f63e50684d6806697589b620ee4b4c1b21b5 (diff)
downloadiosdc-japan-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.tar.gz
iosdc-japan-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.tar.zst
iosdc-japan-2025-albatross-a92aa377d536fe67fa1ff485566da38cf94328bb.zip
feat(frontend): tweak score bar
Diffstat (limited to 'frontend')
-rw-r--r--frontend/app/components/Gaming/ScoreBar.tsx2
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx2
2 files changed, 2 insertions, 2 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>
);
}
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
index 4a7fe8a..981f533 100644
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
+++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
@@ -54,7 +54,7 @@ export default function GolfWatchAppGaming1v1({
? "bg-orange-400"
: gameResult === "winB"
? "bg-purple-400"
- : "bg-pink-500"
+ : "bg-sky-600"
: "bg-sky-600";
return (