Skip to content
Compare
Choose a tag to compare
@cheton cheton released this 14 Feb 03:37
· 1 commit to v2 since this release
c127dd0

2.6.1

Patch Changes

  • feat(styled-system): introduce _has, _is, and _not style props to support functional pseudo-class selectors by @cheton in #972
  • Updated dependencies [008d823]

🚀 Examples


⚠️ Deprecation Notice

  • The properties _focusHover and _focusActive are deprecated and will be removed in the next major release. Instead, use _focus with nested selectors (PR #972):
    _focus={{
      '&:hover': {
        // Styles for `&:focus:hover`
      },
      '&:active': {
        // Styles for `&:focus:active`
      },
    }}