Skip to content

Commit

Permalink
fix: add group prefix (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecf committed Sep 17, 2020
1 parent 9b959cb commit 52f10eb
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('group');
pseudoClasses.push(this.prefix + 'group');
}
});
});
Expand Down

0 comments on commit 52f10eb

Please sign in to comment.