From 9631f7a1455cfc71652ae9eccd93be83432074e0 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 20 Oct 2024 15:55:27 +0530 Subject: [PATCH] feat: set min width --- src/components/molecules/ActionDescriptionBox.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/molecules/ActionDescriptionBox.tsx index 69b8478b..a3bcde4e 100644 --- a/src/components/molecules/ActionDescriptionBox.tsx +++ b/src/components/molecules/ActionDescriptionBox.tsx @@ -5,7 +5,8 @@ import { Typography, FormControlLabel, Checkbox, Box } from '@mui/material'; const CustomBoxContainer = styled.div` position: relative; - width: 300px; + min-width: 250px; + width: auto; min-height: 100px; height: auto; border: 2px solid #ff00c3;