Skip to content

Commit

Permalink
fix: add missing classnames that does not have the opacity short hand…
Browse files Browse the repository at this point in the history
… suffix
  • Loading branch information
muhammadsammy committed Jun 20, 2021
1 parent 6ec97b9 commit a48e16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/core/ClassnamesGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ export class ClassnamesGenerator {

// Return the result classnames based on whether JIT mode is enabled or not
if (this.isJitModeEnabled()) {
return classnamesWithColorsAndOpacitySuffix;
return classnamesWithColors.concat(classnamesWithColorsAndOpacitySuffix);
} else {
return classnamesWithColors;
}
Expand Down

0 comments on commit a48e16b

Please sign in to comment.