From 58c3efe0a15b4b55e5da2006a0c7ac2b86737f9a Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 23 Oct 2024 20:18:50 +0530 Subject: [PATCH] feat: remove comments --- src/components/molecules/ActionDescriptionBox.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/molecules/ActionDescriptionBox.tsx index 9dd92e51..defbd666 100644 --- a/src/components/molecules/ActionDescriptionBox.tsx +++ b/src/components/molecules/ActionDescriptionBox.tsx @@ -3,7 +3,6 @@ import styled from 'styled-components'; import { Typography, FormControlLabel, Checkbox, Box } from '@mui/material'; import { useActionContext } from '../../context/browserActions'; -// Styled components const CustomBoxContainer = styled.div` position: relative; min-width: 250px; @@ -13,7 +12,7 @@ const CustomBoxContainer = styled.div` // border: 2px solid #ff00c3; border-radius: 5px; background-color: white; - margin: 70px 15px 30px 15px; /* Increased top margin to move the box down */ + margin: 70px 15px 30px 15px; `; const Triangle = styled.div` @@ -30,10 +29,10 @@ const Triangle = styled.div` const Logo = styled.img` position: absolute; - top: -70px; /* Adjusted to move the logo further above the box */ + top: -70px; left: 50%; transform: translateX(-50%); - width: 60px; /* Increased logo size */ + width: 60px; height: auto; `;