diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-03-20 20:41:06 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-03-20 20:41:06 +0900 |
| commit | cd7a1532535cd5fa314ec4f0c9b51c571f38ec12 (patch) | |
| tree | 70f08fbdc2b178b19f62c235cea7cbd6c0f6b4f0 /frontend | |
| parent | 1555842ff38944eecd9a7c0a948157648d2411ff (diff) | |
| download | phperkaigi-2026-albatross-cd7a1532535cd5fa314ec4f0c9b51c571f38ec12.tar.gz phperkaigi-2026-albatross-cd7a1532535cd5fa314ec4f0c9b51c571f38ec12.tar.zst phperkaigi-2026-albatross-cd7a1532535cd5fa314ec4f0c9b51c571f38ec12.zip | |
style(frontend): thicken tournament bracket connector lines
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/app/pages/TournamentPage.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/app/pages/TournamentPage.tsx b/frontend/app/pages/TournamentPage.tsx index fd7cac8..f7e203a 100644 --- a/frontend/app/pages/TournamentPage.tsx +++ b/frontend/app/pages/TournamentPage.tsx @@ -108,13 +108,13 @@ function Connector({ > {/* Center stem going UP to parent round */} <div className={`flex justify-center ${isTopRound ? "h-24" : "h-12"}`}> - <div className={`w-0.5 ${winnerBg}`} /> + <div className={`w-1 ${winnerBg}`} /> </div> {/* Horizontal line */} <div className="flex justify-center"> - <div className={`w-1/4 border-t-2 ${leftBorderColor}`} /> - <div className={`w-1/4 border-t-2 ${rightBorderColor}`} /> + <div className={`w-1/4 border-t-4 ${leftBorderColor}`} /> + <div className={`w-1/4 border-t-4 ${rightBorderColor}`} /> </div> {/* Two legs going DOWN to child elements */} @@ -128,13 +128,13 @@ function Connector({ className="flex justify-center" style={{ gridColumn: `1 / span ${leftHalf}` }} > - <div className={`w-0.5 ${leftLegColor}`} /> + <div className={`w-1 ${leftLegColor}`} /> </div> <div className="flex justify-center" style={{ gridColumn: `${leftHalf + 1} / span ${rightHalf}` }} > - <div className={`w-0.5 ${rightLegColor}`} /> + <div className={`w-1 ${rightLegColor}`} /> </div> </div> </div> @@ -215,7 +215,7 @@ function TournamentBracket({ tournament }: { tournament: Tournament }) { className="flex justify-center h-12" style={{ gridColumn: `${slot + 1} / span 1` }} > - <div className={`w-0.5 ${stemColor}`} /> + <div className={`w-1 ${stemColor}`} /> </div>, ); } |
