From 2662ba3875a7373a7c8e348e596926e8b81844a4 Mon Sep 17 00:00:00 2001 From: ChristoferMendes Date: Fri, 10 May 2024 12:10:22 -0300 Subject: [PATCH] style: Add styling for tags container in repacks modal --- src/renderer/src/pages/game-details/repacks-modal.css.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/renderer/src/pages/game-details/repacks-modal.css.ts b/src/renderer/src/pages/game-details/repacks-modal.css.ts index 4e15a63a..827fc237 100644 --- a/src/renderer/src/pages/game-details/repacks-modal.css.ts +++ b/src/renderer/src/pages/game-details/repacks-modal.css.ts @@ -16,3 +16,10 @@ export const repackButton = style({ color: vars.color.bodyText, padding: `${SPACING_UNIT * 2}px`, }); + +export const tagsContainer = style({ + display: "flex", + gap: `${SPACING_UNIT}px`, + flexWrap: "wrap", +}); +