Skip to content

Commit

Permalink
Revert "fix: add group prefix (#55)"
Browse files Browse the repository at this point in the history
This reverts commit 52f10eb.
  • Loading branch information
muhammadsammy authored Sep 17, 2020
1 parent 52f10eb commit 9b0386e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/ClassesGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ export class ClassesGenerator implements IGenerator {
} else {
pseudoClasses.push(variant + this.separator + this.prefix + classname);
if (variant.startsWith('group') && !pseudoClasses.includes('group'))
pseudoClasses.push(this.prefix + 'group');
pseudoClasses.push('group');
}
});
});
Expand Down

0 comments on commit 9b0386e

Please sign in to comment.