Fix typo on docs

This commit is contained in:
Elton Mesquita 2020-05-29 12:48:38 +01:00
parent 95031bb49b
commit c47cc40014
2 changed files with 2 additions and 2 deletions

View File

@ -888,7 +888,7 @@
/* This changes all the animations globaly */
:root {
--animate-duration: 800ms;
--animation-delay: 0.9s;
--animate-delay: 0.9s;
}
</code></pre>
<p>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:</p>

View File

@ -70,7 +70,7 @@ Example:
/* This changes all the animations globaly */
:root {
--animate-duration: 800ms;
--animation-delay: 0.9s;
--animate-delay: 0.9s;
}
```