Skip to content

Commit 0c73d11

Browse files
Change Button Size to large for better padding
Signed-off-by: Rajesh-Nagarajan-11 <rajeshnagarajan36@gmail.com>
1 parent bbc3d6c commit 0c73d11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/custom/DashboardWidgets/GettingStartedWidget/ActionButtonCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const ActionButtonCard = ({
147147
<CustomComponentWrapper>{customComponent}</CustomComponentWrapper>
148148
{actionButton && (
149149
<CardActions>
150-
<Button disabled={disabled} variant="contained" href={href} onClick={onClick}>
150+
<Button disabled={disabled} size="large" variant="contained" href={href} onClick={onClick}>
151151
{btnTitle}
152152
</Button>
153153
</CardActions>
@@ -193,7 +193,7 @@ const ActionButtonCard = ({
193193
<CustomComponentWrapper>{customComponent}</CustomComponentWrapper>
194194
{actionButton && (
195195
<CardActions>
196-
<Button disabled={disabled} variant="contained" href={href} onClick={onClick}>
196+
<Button disabled={disabled} size="large" variant="contained" href={href} onClick={onClick}>
197197
{showProgress ? (percentage === 100 ? 'Revisit' : btnTitle) : btnTitle}
198198
</Button>
199199
</CardActions>

src/custom/DashboardWidgets/RecentDesignWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const DesignCard: React.FC<DesignCardProps> = ({
246246
variant="contained"
247247
href={href || undefined}
248248
onClick={onClick || undefined}
249-
size="small"
249+
size="large"
250250
>
251251
{btnTitle}
252252
</Button>

0 commit comments

Comments
 (0)