diff options
author | Eric Bailey <git@esb.lol> | 2025-06-24 22:03:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-24 22:03:23 -0500 |
commit | 4c1515169af81f5eb861e476d2bc07f17c8635fd (patch) | |
tree | 37be0de4769da65b3afde1cd1f890afecde14f3b /src/alf/atoms.ts | |
parent | cd820709b611a0381222a34d2bc6ff49fa380452 (diff) | |
download | voidsky-4c1515169af81f5eb861e476d2bc07f17c8635fd.tar.zst |
Tooltip (#8555)
* Working overlay, WIP * Ok working with no overlay and global gesture handler * Ok pretty good on native * Cleanup * Cleanup * add animation * add transform origin to animation * Some a11y * Improve colors * Explicitly wrap gesture handler * Add easier abstraction * Web * Fix animation * Cleanup and remove provider * Include demo for now * Ok diff interface to avoid collapsed views * Use dimensions hook * Adjust overlap, clarify intent of consts * Revert testing edits --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/alf/atoms.ts')
-rw-r--r-- | src/alf/atoms.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index 79ec41679..440ac16ac 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -983,6 +983,10 @@ export const atoms = { transition_none: web({ transitionProperty: 'none', }), + transition_timing_default: web({ + transitionTimingFunction: 'cubic-bezier(0.17, 0.73, 0.14, 1)', + transitionDuration: '100ms', + }), transition_all: web({ transitionProperty: 'all', transitionTimingFunction: 'cubic-bezier(0.17, 0.73, 0.14, 1)', |