From eb380ce8ccd1239955256d7eb40faaf55604a924 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Wed, 7 May 2025 11:36:42 -0700 Subject: [PATCH] fix status box alignment --- client/src/Components/StatusBoxes/index.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/Components/StatusBoxes/index.jsx b/client/src/Components/StatusBoxes/index.jsx index fedc74011..40ea2d182 100644 --- a/client/src/Components/StatusBoxes/index.jsx +++ b/client/src/Components/StatusBoxes/index.jsx @@ -20,8 +20,8 @@ const StatusBoxes = ({ shouldRender, flexWrap = "nowrap", children }) => { direction="row" flexWrap={flexWrap} gap={theme.spacing(8)} - justifyContent="space-between" - display="flex" + justifyContent="flex-start" + display="flex" > {children} @@ -30,6 +30,7 @@ const StatusBoxes = ({ shouldRender, flexWrap = "nowrap", children }) => { StatusBoxes.propTypes = { shouldRender: PropTypes.bool, + flexWrap: PropTypes.string, children: PropTypes.node, };