Skip to content

Commit

Permalink
Fix css value (#3573)
Browse files Browse the repository at this point in the history
`margin-inline-start` value was not being parse properly.
  • Loading branch information
justinchou-google authored Sep 23, 2024
1 parent 6a86806 commit cfa389a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/ui-css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const DIALOG_CSS = css`
[dir='rtl'] .swg-dialog,
[dir='rtl'] .swg-toast {
margin-inline-start: calc(100vw - 100vw / 2 -240px) !important;
margin-inline-start: calc(100vw - 100vw / 2 - 240px) !important;
}
}
Expand Down

0 comments on commit cfa389a

Please sign in to comment.