From 97b58877c772c0190a34ecbcfb5624ddcfd421f3 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 21 Jul 2023 17:16:23 +0300 Subject: [PATCH] Fix icon position at information box --- src/components/InformationBox/InformationBox.jsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/InformationBox/InformationBox.jsx b/src/components/InformationBox/InformationBox.jsx index 3d6d12bd..a1287944 100644 --- a/src/components/InformationBox/InformationBox.jsx +++ b/src/components/InformationBox/InformationBox.jsx @@ -7,14 +7,13 @@ const InformationBox = ({ icon, text }) => { border: "2px solid #E7EAEE", borderRadius: "12px", padding: "11px 16px", - gap: "8px", width: "632px", + alignItems: "start", }} + space={"$2"} > - - - {text} - + + {text} ); };