Skip to content

Commit

Permalink
minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
kianamcc committed Jan 17, 2025
1 parent 8621b86 commit 5e92914
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,9 @@ export default function EntityPageTitleBar(props: EntityPageTitleBarProps) {
}}
>
<Stack
sx={theme => ({
[theme.breakpoints.down('sm')]: {
flexDirection: 'column',
},
[theme.breakpoints.up('sm')]: {
flexDirection: 'row',
},
})}
sx={{
flexDirection: { xs: 'column', sm: 'row' },
}}
>
<Stack
direction={'row'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function ComplexMenu(props: ComplexMenuProps) {
alignItems: 'center',
gap: '10px',
[theme.breakpoints.down('sm')]: {
flexWrap: 'wrap',
flexDirection: 'column',
paddingTop: '10px',
},
})}
Expand Down

0 comments on commit 5e92914

Please sign in to comment.