Minor Changes
-
dcc9053: Remove
base
fromcss
or pattern style objects. Thebase
keyword is only supported in recipes or
conditional styles.Before
hstack({ // ❌ doesn't work base: { background: 'red.400', p: '11', }, display: 'flex', flexDirection: 'column', })
After
hstack({ // ✅ works background: 'red.400', p: '11', display: 'flex', flexDirection: 'column', })