Skip to content

Commit

Permalink
fix: flexGrow prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Karine Brandelli Padilha committed Dec 30, 2024
1 parent 34b4a76 commit 48c3850
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/feedback/nothing-found/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const NothingFound = (props: IProps) => {

return show ? (
<Typography
flex={1}
variant='h5'
flexGrow={1}
align='center'
color='textSecondary'
padding='48px 0'
Expand Down
2 changes: 1 addition & 1 deletion src/core/surfaces/card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ const Card = (props: IProps) => {
{title && (
<Typography
name={name + '-title'}
flex={1}
variant='h6'
flexGrow={1}
color='primary'>
{title}
</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/core/surfaces/panel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Panel = (props: PanelProps) => {
!hideSummary && (
<Summary>
{title && (
<Typography noWrap flexGrow={1} variant='subtitle1'>
<Typography noWrap flex={1} variant='subtitle1'>
{title}
</Typography>
)}
Expand Down

0 comments on commit 48c3850

Please sign in to comment.