Skip to content

Commit

Permalink
Fix action RTL issue
Browse files Browse the repository at this point in the history
Using `justifyContent: 'end'` will work in both RTL and LTR directions
  • Loading branch information
pmahdicheraghi committed Sep 5, 2024
1 parent a61155a commit 1fcf3ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/MaterialDesignContent/MaterialDesignContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ const classes = makeStyles({
action: {
display: 'flex',
alignItems: 'center',
marginLeft: 'auto',
paddingLeft: '16px',
marginRight: '-8px',
flexGrow: 1,
justifyContent: 'end',
margin: '-8px',
},
});

Expand Down

0 comments on commit 1fcf3ab

Please sign in to comment.