From ce02e4aa3d7ba9ad12c0b3d6861ea4c436e93aef Mon Sep 17 00:00:00 2001 From: Caidan Williams Date: Tue, 22 Jul 2025 13:32:56 -0700 Subject: 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. --- src/alf/atoms.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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', }, -- cgit 1.4.1