Skip to content

Better grouping for identical value pseudo rules #20

Open
@Zn4rK

Description

@Zn4rK
const x = style({
  '&:hover': {
    background: 'red',
  }
});

const x2 = style({
  '&:active': {
    background: 'red',
  }
});

Will produce the following css:

.a1:hover {
  background: red;
}

.b1:active {
  background: red;
}

But it could produce the following CSS to save a few bytes:

.a1:hover, .b1:active {
   background: red;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions