Skip to content

Commit

Permalink
feat: generat list style type types
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Jun 24, 2020
1 parent 23d5fd0 commit 13289af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/generation/ClassesGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export class ClassesGenerator implements IClassesGenerator {
fontWeight: Object.keys(this.configScanner.themeConfig.fontWeight).map(weight => 'font-' + weight),
letterSpacing: Object.keys(this.configScanner.themeConfig.letterSpacing).map(value => 'tracking-' + value),
lineHeight: Object.keys(this.configScanner.themeConfig.lineHeight).map(value => 'leading-' + value),
listStyleType: Object.keys(this.configScanner.themeConfig.listStyleType).map(value => 'list-' + value),
textColor: this.getGeneratedClassesWithColors('text'),
};

Expand Down

0 comments on commit 13289af

Please sign in to comment.