From 5ff2e7236a6bfba0ce9704df8f0d268645a570d2 Mon Sep 17 00:00:00 2001 From: browntj16 Date: Wed, 1 May 2024 14:19:58 -0500 Subject: [PATCH] Made non-ready cards horizontal --- src/App.tsx | 6 +++++- src/index.css | 12 ++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index cfcb4af..2218a14 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -104,9 +104,13 @@ function CardComponentOnBoard({ children?: ReactNode; setHover: any }) { + let className = "card_shape_not_ready overflow-hidden"; + if(card.getIsReady()){ + className = "card_shape overflow-hidden"; + } return (