diff --git a/docs/index.html b/docs/index.html index 666cd91..6eb0a57 100644 --- a/docs/index.html +++ b/docs/index.html @@ -888,7 +888,7 @@ /* This changes all the animations globaly */ :root { --animate-duration: 800ms; - --animation-delay: 0.9s; + --animate-delay: 0.9s; }

Custom properties also make it easy to change all your animations time-constrained properties on the fly. It means that you can have a slow-motion or time-lapse effect with a javascript one-liner:

diff --git a/docsSource/sections/01-usage.md b/docsSource/sections/01-usage.md index f7b4361..63314bb 100644 --- a/docsSource/sections/01-usage.md +++ b/docsSource/sections/01-usage.md @@ -70,7 +70,7 @@ Example: /* This changes all the animations globaly */ :root { --animate-duration: 800ms; - --animation-delay: 0.9s; + --animate-delay: 0.9s; } ```