Skip to content

@emotion/babel-plugin@11.9.2

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Apr 21:43
· 150 commits to main since this release
888377a

Patch Changes

  • #2721 ae0f650b Thanks @Andarist! - Fixed an issue in the minifying logic that could remove rules with the same context values as their parent rules. Like in the example below:

    styled.div`
      > div {
        color: blue;
    
        > div {
          color: hotpink;
        }
      }
    `