about summary refs log tree commit diff
path: root/src/alf
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-07-22 13:32:56 -0700
committerCaidan Williams <caidan@internet.dev>2025-07-24 12:30:35 -0700
commitce02e4aa3d7ba9ad12c0b3d6861ea4c436e93aef (patch)
tree87940c4e828c5da3565e788081da46e1f6f11194 /src/alf
parent605c50d6c7e848a2581dbf9fe02c21da28225b25 (diff)
downloadvoidsky-ce02e4aa3d7ba9ad12c0b3d6861ea4c436e93aef.tar.zst
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.
Diffstat (limited to 'src/alf')
-rw-r--r--src/alf/atoms.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index 440ac16ac..572560217 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -67,6 +67,9 @@ export const atoms = {
     zIndex: 50,
   },
 
+  overflow_visible: {
+    overflow: 'visible',
+  },
   overflow_hidden: {
     overflow: 'hidden',
   },