diff options
Diffstat (limited to 'frontend/src/pages/Games/Games.tsx')
| -rw-r--r-- | frontend/src/pages/Games/Games.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/pages/Games/Games.tsx b/frontend/src/pages/Games/Games.tsx index e23b245..ea46733 100644 --- a/frontend/src/pages/Games/Games.tsx +++ b/frontend/src/pages/Games/Games.tsx | |||
| @@ -10,12 +10,12 @@ interface GamesProps { | |||
| 10 | 10 | ||
| 11 | const Games: React.FC<GamesProps> = ({ games }) => { | 11 | const Games: React.FC<GamesProps> = ({ games }) => { |
| 12 | return ( | 12 | return ( |
| 13 | <div className="ml-20 min-h-screen text-foreground font-[--font-barlow-semicondensed-regular] overflow-y-auto scrollbar-thin"> | 13 | <div className="py-12 px-12 w-full"> |
| 14 | <Helmet> | 14 | <Helmet> |
| 15 | <title>LPHUB | Games</title> | 15 | <title>LPHUB | Games</title> |
| 16 | </Helmet> | 16 | </Helmet> |
| 17 | <section className="py-12 px-12 w-full"> | 17 | <section> |
| 18 | <h1 className="text-3xl font-bold mb-8">Games</h1> | 18 | <h1 className="text-3xl mb-8">Games</h1> |
| 19 | <div className="flex flex-col w-full"> | 19 | <div className="flex flex-col w-full"> |
| 20 | {games.map((game, index) => ( | 20 | {games.map((game, index) => ( |
| 21 | <GameEntry game={game} key={index} /> | 21 | <GameEntry game={game} key={index} /> |