From c47cc4001419f4a2af8dccf0244fef96b704b078 Mon Sep 17 00:00:00 2001 From: Elton Mesquita Date: Fri, 29 May 2020 12:48:38 +0100 Subject: [PATCH] Fix typo on docs --- docs/index.html | 2 +- docsSource/sections/01-usage.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } ```