From 74de40b29e4a66ca8d72ebf54d7448273c1e0440 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 23 Oct 2024 20:26:11 +0530 Subject: [PATCH] feat: make logo bigger --- src/components/molecules/ActionDescriptionBox.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/molecules/ActionDescriptionBox.tsx index 7c4166ea..02f30985 100644 --- a/src/components/molecules/ActionDescriptionBox.tsx +++ b/src/components/molecules/ActionDescriptionBox.tsx @@ -12,7 +12,7 @@ const CustomBoxContainer = styled.div` // border: 2px solid #ff00c3; border-radius: 5px; background-color: white; - margin: 70px 15px 25px 15px; + margin: 80px 15px 25px 15px; `; const Triangle = styled.div` @@ -29,10 +29,10 @@ const Triangle = styled.div` const Logo = styled.img` position: absolute; - top: -70px; + top: -80px; left: 50%; transform: translateX(-50%); - width: 60px; + width: 70px; height: auto; border-radius: 5px; `;