aboutsummaryrefslogtreecommitdiff
path: root/src/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/store.ts')
-rw-r--r--src/store.ts2
1 files changed, 2 insertions, 0 deletions
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,
};
}