Skip to content

Commit

Permalink
fix(text): inherit letter spacing from theme (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Aug 17, 2023
1 parent 89c3475 commit 4946b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Text/src/Text.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default {
styles.letterSpacing = this.resolvedLetterSpacing;
}
if (this.isCentered) {
styles.paddingLeft = this.letterSpacing;
styles.paddingLeft = styles.letterSpacing;
}
return styles;
},
Expand Down

0 comments on commit 4946b6c

Please sign in to comment.