From 2f5f6191783d32bf462db14f33c8dddb22990943 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Mon, 23 Jan 2023 10:01:01 +1100 Subject: Speed up transitions for touch actions --- src/store.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/store.ts') diff --git a/src/store.ts b/src/store.ts index 6482dfe..4436211 100644 --- a/src/store.ts +++ b/src/store.ts @@ -73,6 +73,7 @@ export type StoreState = { }, borderRadius: number, // px transitionDuration: number, // ms + animationDelay: number, // ms }; function getDefaultState(): StoreState { @@ -142,6 +143,7 @@ function getDefaultState(): StoreState { color, borderRadius: 5, transitionDuration: 300, + animationDelay: 100, }; } -- cgit v1.2.3