From 0ec996408f8da63b513647b833d11f4bd403436b Mon Sep 17 00:00:00 2001 From: yuchenglong Date: Fri, 23 Jan 2026 10:22:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=AF=94=E8=B5=9B=E5=8D=A1?= =?UTF-8?q?=E7=89=87=E5=BE=97=E5=88=86=E9=83=A8=E5=88=86=E7=9A=84=E8=BE=B9?= =?UTF-8?q?=E6=A1=86=E9=A2=9C=E8=89=B2=E5=92=8C=E5=AE=BD=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/match-card.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/match-card.tsx b/components/match-card.tsx index 54f387d..38a2988 100644 --- a/components/match-card.tsx +++ b/components/match-card.tsx @@ -97,7 +97,9 @@ export function MatchCard({ const iconColor = isDark ? Colors.dark.icon : Colors.light.icon; const cardBg = isDark ? "#1C1C1E" : "#FFFFFF"; const borderColor = isDark ? "#2C2C2E" : "rgba(0,0,0,0.06)"; - const scoreBorder = isDark ? "rgba(255,255,255,0.18)" : "rgba(0,0,0,0.12)"; + const scoreBorder = isDark + ? "rgba(255,255,255,0.18)" + : "rgba(230, 230, 230, 0.28)"; const scoreBg = isDark ? "rgba(255,255,255,0.04)" : "rgba(255,255,255,0.6)"; const oddBadgeBg = isDark ? "rgba(255,255,255,0.06)" : "rgba(0,0,0,0.03)"; @@ -523,7 +525,7 @@ export function MatchCard({ { borderColor: scoreParts.homeLead || scoreParts.awayLead - ? "#e6e6e648" + ? "rgba(230, 230, 230, 0.28)" : scoreBorder, backgroundColor: scoreBg, }, @@ -723,7 +725,7 @@ const styles = StyleSheet.create({ width: 28, height: 55, borderRadius: 8, - borderWidth: 1.2, + borderWidth: 0.3, alignItems: "stretch", justifyContent: "center", overflow: "hidden",