From 88bdbb2ef51f357ed2e6727eeeb3d5dc5c9f3110 Mon Sep 17 00:00:00 2001 From: William Felker Date: Tue, 22 Sep 2020 09:23:56 +0800 Subject: [PATCH] Error: Fixes --- components/core/CodeTerminal.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/core/CodeTerminal.js b/components/core/CodeTerminal.js index 19390aad..0fe725ba 100644 --- a/components/core/CodeTerminal.js +++ b/components/core/CodeTerminal.js @@ -5,13 +5,13 @@ import * as System from "~/components/system"; import { css, keyframes } from "@emotion/react"; const blinkCursor = keyframes` -0% {opacity: 0;} -50% {opacity: 1;} -100% {opacity: 0;} + 0% {opacity: 0;} + 50% {opacity: 1;} + 100% {opacity: 0;} `; const typewriter = keyframes` - 0%,100% {width: 0;} + 0%, 100% {width: 0;} 20%, 80% {width: 10.2em;} `;