diff --git a/frontend/index.html b/frontend/index.html index 6856727..cf8d36e 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,6 +5,14 @@ + + + +
+
{effTab === "tournament"
? lang === "en"
? "Bracket is set after the group stage."
@@ -394,7 +394,7 @@ function Chip({
className={`shrink-0 whitespace-nowrap rounded-full border px-3.5 py-1.5 text-[13px] font-bold transition ${
active
? "border-[#94FBE0] text-[#94FBE0]"
- : "border-[var(--line-d)] text-white/55"
+ : "border-white/20 text-white/70"
}`}
>
{children}
@@ -404,7 +404,7 @@ function Chip({
// MLS 최근 5경기 폼 — "WWLDW" 를 W/D/L 색으로 표시
export function FormBadges({ form }: { form?: string | null }) {
- if (!form) return ?;
+ if (!form) return ?;
return (
{form.split("").map((c, i) => (
@@ -415,7 +415,7 @@ export function FormBadges({ form }: { form?: string | null }) {
? "text-[#94FBE0]"
: c === "L"
? "text-[#FF5B5B]/80"
- : "text-white/45"
+ : "text-white/60"
}
>
{c}
@@ -429,7 +429,7 @@ export function FormBadges({ form }: { form?: string | null }) {
function RankBadge({ rank, lang = "ko" }: { rank?: number | null; lang?: Lang }) {
if (!rank) return null;
return (
-
+
{lang === "en" ? `#${rank}` : `${rank}위`}
);
@@ -493,21 +493,21 @@ function MatchCard({
// 비투표(타 조)는 클릭 비활성, 투표 가능 조(A)는 상세로 이동
const inner = (
<>
-