Patch Changes
-
aac7b37: Fix an issue with the
grid
pattern from @pandacss/preset-base (included by default), setting a
minChildWidth wasn't interpreted as a token valueBefore:
<div className={grid({ minChildWidth: '80px', gap: 8 })} /> // ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) <div className={grid({ minChildWidth: '20', gap: 8 })} /> // ❌ grid-template-columns: repeat(auto-fit, minmax(20, 1fr)) // ^^^
After:
<div className={grid({ minChildWidth: '80px', gap: 8 })} /> // ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) <div className={grid({ minChildWidth: '20', gap: 8 })} /> // ✅ grid-template-columns: repeat(auto-fit, minmax(var(--sizes-20, 20), 1fr)) // ^^^^^^^^^^^^^^^^^^^
-
Updated dependencies [566fd28]
-
Updated dependencies [43bfa51]
- @pandacss/token-dictionary@0.18.1
- @pandacss/config@0.18.1
- @pandacss/node@0.18.1
- @pandacss/logger@0.18.1
- @pandacss/shared@0.18.1
- @pandacss/types@0.18.1