feat(atoms): add overflow_visible utility

Added the `overflow_visible` atom to the atoms utility object for
setting CSS overflow to 'visible'. This complements the existing
`overflow_hidden` atom and improves flexibility for layout styling.
This commit is contained in:
Caidan Williams
2025-07-22 13:32:56 -07:00
parent 605c50d6c7
commit ce02e4aa3d
+3
View File
@@ -67,6 +67,9 @@ export const atoms = {
zIndex: 50,
},
overflow_visible: {
overflow: 'visible',
},
overflow_hidden: {
overflow: 'hidden',
},