Support pattern shorthand transformation within nested scopes
Leon van der Noll
As described in this issue: https://github.com/chakra-ui/panda/issues/1383
It would be useful to support the usage of shorthand property transformations in patterns when declaring nested scopes, like breakpoints. Currently, the usage of the property
justify
within the breakpoint md
in this snippet does not work:flex({
justify: 'center',
md: {
justify: 'space-between',
},
}),