From 89e17099948353d61ba3ac56d2a76fa19d99f0b1 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 00:58:21 -0800 Subject: [PATCH] Fix styles for remixed teams --- components/PartyDetails/index.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/PartyDetails/index.scss b/components/PartyDetails/index.scss index dfd69bcc..00fc2b6e 100644 --- a/components/PartyDetails/index.scss +++ b/components/PartyDetails/index.scss @@ -344,6 +344,7 @@ display: flex; flex-direction: column; gap: $unit-2x; + width: 752px; h3 { font-size: $font-medium; @@ -351,9 +352,13 @@ } .GridRepCollection { - gap: $unit-2x; + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); margin-left: $unit-2x * -1; margin-right: $unit-2x * -1; + + .GridRep { + min-width: 200px; + } } } }