diff --git a/app/features/tournament/routes/to.$id.teams.tsx b/app/features/tournament/routes/to.$id.teams.tsx index 7ff9461ff..6fe56b0b4 100644 --- a/app/features/tournament/routes/to.$id.teams.tsx +++ b/app/features/tournament/routes/to.$id.teams.tsx @@ -4,6 +4,7 @@ import { ModeImage, StageImage } from "~/components/Image"; import { userPage } from "~/utils/urls"; import type { FindTeamsByTournamentIdItem } from "../queries/findTeamsByTournamentId.server"; import type { TournamentLoaderData } from "./to.$id"; +import clsx from "clsx"; export default function TournamentTeamsPage() { const data = useOutletContext(); @@ -56,7 +57,12 @@ function TeamMapPool({ mapPool: NonNullable; }) { return ( -
+
{mapPool.map(({ mode, stageId }, i) => { return (
diff --git a/app/features/tournament/tournament.css b/app/features/tournament/tournament.css index f5fc5e621..9b553cb29 100644 --- a/app/features/tournament/tournament.css +++ b/app/features/tournament/tournament.css @@ -138,6 +138,10 @@ overflow: hidden; } +.tournament__team-with-roster__map-pool.tournament__team-with-roster__map-pool__3-columns { + grid-template-columns: max-content max-content max-content; +} + .tournament__team-with-roster__map-pool__mode-info { background-color: var(--bg-darker); display: flex;