@pandacss/shared@0.46.0
版本发布时间: 2024-09-10 02:15:53
chakra-ui/panda最新发布版本:@pandacss/types@0.46.0(2024-09-10 02:16:05)
Minor Changes
-
54426a2: Add support native css nesting in template literal mode. Prior to this change, you need to add
&
to all nested selectors.Before:
css` & p { color: red; } `
After:
css` p { color: red; } `
Good to know: Internally, this will still convert to
p
to& p
, but the generated css will work as expected.