Skip to content

Commit

Permalink
fix: add missing 'transition' type
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Sep 11, 2020
1 parent 04be326 commit bf4bb5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli/ClassesGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ export class ClassesGenerator implements IGenerator {
private transitionsAndAnimations = (): typeof defaultClasses.TransitionsAndAnimations => {
return {
...defaultClasses.TransitionsAndAnimations,
transitionProperty: Object.keys(this.theme.transitionProperty).map(
property => 'transition-' + property,
),
transitionProperty: Object.keys(this.theme.transitionProperty)
.map(property => 'transition-' + property)
.concat('transition'),
transitionDuration: Object.keys(this.theme.transitionDuration).map(
value => 'duration-' + value,
),
Expand Down

0 comments on commit bf4bb5e

Please sign in to comment.