v2.3.5 🔮
·
5 commits
to refs/heads/master
since this release
New Features 🚀
Add missing
x
,y
directions foroverflow
property for adjust proper expected behavior of multipleoverflow
propsBecause, 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