From f97d98eabdb82fad90d58278f0494ff3dbab2ed3 Mon Sep 17 00:00:00 2001 From: Haydn Ewers <27211+haydn@users.noreply.github.com> Date: Mon, 10 Oct 2022 13:24:04 +1100 Subject: [PATCH] Prevent issue cards being too wide --- components/IssueComparison.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/IssueComparison.css.ts b/components/IssueComparison.css.ts index 3350466..a8c4937 100644 --- a/components/IssueComparison.css.ts +++ b/components/IssueComparison.css.ts @@ -9,7 +9,7 @@ export const header = style({ export const main = style({ columnGap: 20, display: "grid", - gridTemplateColumns: "1fr 1fr", + gridTemplateColumns: "minmax(0, 1fr) minmax(0, 1fr)", padding: "20px 20px 150px", rowGap: 20, }); -- 2.51.2