Skip to content

Commit

Permalink
Merge pull request #8793 from akash5100/fix
Browse files Browse the repository at this point in the history
Fixed text-align: right for rtl languages
  • Loading branch information
MisRob committed Dec 2, 2021
2 parents 1861f0f + 7c7efaf commit 35665d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
color: this.$themeTokens.text,
width: '100%',
border: '2px solid transparent',
'text-align': 'left',
'text-align': this.isRtl ? 'right' : 'left',
'font-weight': 'normal',
'text-transform': 'none',
position: 'relative',
Expand Down

0 comments on commit 35665d0

Please sign in to comment.