Skip to content

Commit e12357d

Browse files
committed
feat: remove min-widht from the custom formatter
Signed-off-by: amitamrutiya <amitamrutiya2210@gmail.com>
1 parent fa3c00f commit e12357d

4 files changed

Lines changed: 0 additions & 5 deletions

File tree

src/custom/DashboardWidgets/GettingStartedWidget/ActionButtonCard.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ const BoxContainer = styled(Card)<{ playgroundCardBackgroundImgSrc?: string }>(
2929
backgroundPosition: 'right bottom',
3030
backgroundSize: 'cover',
3131
backgroundRepeat: 'no-repeat',
32-
minWidth: 285,
3332
height: '100%',
3433
position: 'relative',
3534
backgroundColor:
@@ -38,7 +37,6 @@ const BoxContainer = styled(Card)<{ playgroundCardBackgroundImgSrc?: string }>(
3837
);
3938

4039
const StyledCard = styled(Card)(({ theme }) => ({
41-
minWidth: 275,
4240
height: '100%',
4341
backgroundColor:
4442
theme.palette.mode === 'dark' ? theme.palette.background.card : theme.palette.common.white

src/custom/DashboardWidgets/PlainCard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { OpenInNewIcon } from '../../icons';
33
import { styled } from '../../theme';
44

55
const StyledCard = styled(Card)(({ theme }) => ({
6-
minWidth: 275,
76
height: '100%',
87
backgroundColor:
98
theme.palette.mode === 'dark' ? theme.palette.background.card : theme.palette.common.white

src/custom/DashboardWidgets/RecentDesignWidget.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ const DesignCard: React.FC<DesignCardProps> = ({
159159
<>
160160
<Card
161161
sx={{
162-
minWidth: 275,
163162
height: '100%',
164163
backgroundColor:
165164
theme.palette.mode === 'dark'

src/custom/DashboardWidgets/WorkspaceActivityWidget.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ interface WorkspaceActivityCardProps {
4040

4141
const StyledCard = styled(Card)(({ theme }) => ({
4242
padding: '1rem',
43-
minWidth: 275,
4443
height: '100%',
4544
overflowY: 'auto',
4645
backgroundColor:

0 commit comments

Comments
 (0)