From 1fcad2f21f3d47954ea2d79f0ca669bf3e40bc2e Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Mon, 21 Feb 2022 15:22:33 -0800 Subject: [PATCH] No horizontal scroll in chat Fix stack when lots of cards Signed-off-by: James Ketrenos --- client/src/Table.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/Table.css b/client/src/Table.css index dfe6078..ca753f0 100755 --- a/client/src/Table.css +++ b/client/src/Table.css @@ -154,7 +154,7 @@ .Stack { position: relative; - display: inline-block; + display: flex; } .Stack:not(:first-child) { @@ -249,6 +249,7 @@ overflow: auto; scroll-behavior: smooth; align-items: flex-start; + overflow-x: hidden; } .ChatInput {