From d19aebd898af77dbc65fabfc4fe905f72769ccc7 Mon Sep 17 00:00:00 2001 From: Wolfboy248 Date: Wed, 11 Dec 2024 09:41:13 +0100 Subject: fix/frontend: games page css rehaul, small maplist fixes --- frontend/src/components/GameEntry.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'frontend/src/components/GameEntry.tsx') diff --git a/frontend/src/components/GameEntry.tsx b/frontend/src/components/GameEntry.tsx index 3bd2842..ebba419 100644 --- a/frontend/src/components/GameEntry.tsx +++ b/frontend/src/components/GameEntry.tsx @@ -3,6 +3,7 @@ import { Link } from "react-router-dom"; import { Game, GameCategoryPortals } from '@customTypes/Game'; import "@css/Games.css" +import games from "@css/Games.module.css"; import GameCategory from '@components/GameCategory'; @@ -18,12 +19,12 @@ const GameEntry: React.FC = ({ game }) => { }, [game.category_portals]); return ( -
-
-
+
+
+
{game.name}
-
+
{catInfo.map((cat, index) => { return })} -- cgit v1.2.3