Skip to content

Commit

Permalink
fix(admin-ui): Make utility margin/padding classes RTL-compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Oct 17, 2023
1 parent ce2b251 commit 74c6634
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/admin-ui/src/lib/static/styles/global/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ $spacings: (1, 2, 3, 4, 5, auto);
$sides: (
't': 'top',
'b': 'bottom',
'l': 'left',
'r': 'right',
'l': 'inline-start',
'r': 'inline-end',
'': (
'top',
'left',
'inline-start',
'bottom',
'right',
'inline-end',
),
'x': (
'left',
'right',
'inline-start',
'inline-end',
),
'y': (
'top',
Expand Down

0 comments on commit 74c6634

Please sign in to comment.