We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8316f60 commit 2add6d6Copy full SHA for 2add6d6
components/Answer/Answer.tsx
@@ -18,7 +18,7 @@ export const Answer: React.FC<AnswerProps> = ({ text }) => {
18
<span
19
key={index}
20
className={styles.fadeIn}
21
- style={{ animationDelay: `${index * 0.02}s` }}
+ style={{ animationDelay: `${index * 0.01}s` }}
22
>
23
{word}{" "}
24
</span>
components/Answer/answer.module.css
@@ -1,5 +1,5 @@
1
.fadeIn {
2
- animation: fadeIn 1s ease-in-out forwards;
+ animation: fadeIn 0.5s ease-in-out forwards;
3
opacity: 0;
4
}
5
0 commit comments