diff options
author | dan <dan.abramov@gmail.com> | 2024-04-16 23:44:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 23:44:41 +0100 |
commit | 480fa10e0b90ba907db04123f0791f8ba756ab65 (patch) | |
tree | a458f97e12c762f4165b1298dea7b1ba8c80af4d /src/components/ProfileHoverCard/index.web.tsx | |
parent | 1e26654a9b7fb7eeb2f35a99b10ad085577cf4bd (diff) | |
download | voidsky-480fa10e0b90ba907db04123f0791f8ba756ab65.tar.zst |
Add hovercards to "Reply To" (#3587)
* Add hovercard for Reply To * Tweak durations
Diffstat (limited to 'src/components/ProfileHoverCard/index.web.tsx')
-rw-r--r-- | src/components/ProfileHoverCard/index.web.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index 763919103..467cbddc6 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -72,10 +72,10 @@ type Action = | 'unhovered-long-enough' | 'finished-animating-hide' -const SHOW_DELAY = 350 +const SHOW_DELAY = 400 const SHOW_DURATION = 300 -const HIDE_DELAY = 200 -const HIDE_DURATION = 200 +const HIDE_DELAY = 150 +const HIDE_DURATION = 150 export function ProfileHoverCardInner(props: ProfileHoverCardProps) { const {refs, floatingStyles} = useFloating({ |