From 647aa0557cab4fd5ebbf382de992c4f2eae55bf9 Mon Sep 17 00:00:00 2001 From: Nozomi Ichihara <31800566+nozomione@users.noreply.github.com> Date: Mon, 18 Sep 2023 16:50:51 -0400 Subject: [PATCH] (edit) adjust the spacing for WarningCard --- client/src/components/WarningCard.js | 44 +++++++++++++++------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/client/src/components/WarningCard.js b/client/src/components/WarningCard.js index de140c78..23e102ec 100644 --- a/client/src/components/WarningCard.js +++ b/client/src/components/WarningCard.js @@ -5,27 +5,29 @@ import { WarningText } from 'components/WarningText' export const WarningCard = ({ label, children }) => { return ( - - - - {label} - - } - /> - - {children} - + + + + + {label} + + } + /> + + {children} + + ) }