v2.3.5 🔮
·
329 commits
to refs/heads/master
since this release
New Features 🚀
Add missing
x,ydirections foroverflowproperty for adjust proper expected behavior of multipleoverflowpropsBecause, tailwind allows us to write overflow classes like this.
<Box className="overflow-hidden overflow-x-auto overflow-y-scroll" />Now, we can write it using tailwindest via new properties, overflowX and overflowY
const box = tw.style({
overflow: "overflow-hidden",
overflowX: "overflow-x-auto",
overflowY: "overflow-y-scroll",
})
<Box className={box.class} />Credits 🔮
Thank you @jbs-marcus!
Full Changelog: v2.3.4...v2.3.5