From 3ff30782fa8c5ddb8ee082d34689d00efafa2b41 Mon Sep 17 00:00:00 2001 From: Jude Davis Date: Thu, 29 Dec 2022 12:55:36 +0000 Subject: [PATCH] Dashboard cards can now scroll when flex is row-wise --- src/components/Dashboard/Dashboard.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Dashboard/Dashboard.css b/src/components/Dashboard/Dashboard.css index 458e082..2a45fc2 100644 --- a/src/components/Dashboard/Dashboard.css +++ b/src/components/Dashboard/Dashboard.css @@ -11,12 +11,14 @@ h1 { z-index: 1; padding: 10px; margin: 5px; + min-width: 200px; } .dashboard-session-card-container { display: flex; flex-direction: row; padding: 10px; + overflow: auto; } .app-sub-component { @@ -44,7 +46,7 @@ h1 { } .dashboard-session-card { - width: 50vw; + width: 65vw; text-align: center; } }