From 644e54d24d3d4750981d6c24210a6b2212633fbf Mon Sep 17 00:00:00 2001 From: 1bl4z3r <34515568+1bl4z3r@users.noreply.github.com> Date: Fri, 21 Jul 2023 22:13:24 +0530 Subject: [PATCH] FIX : Typewriter carat going away --- assets/scss/style.scss | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/assets/scss/style.scss b/assets/scss/style.scss index d00f5c2..2b790d3 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -916,17 +916,13 @@ a.footnote-ref { white-space: nowrap; /* Keeps the content on a single line */ margin: 0 auto; /* Gives that scrolling effect as the typing happens */ // letter-spacing: .100em; /* Adjust as needed */ - - animation: - typing 5s steps({{ strings.RuneCount .Site.Params.homeSubtitle }}, end), - blink-caret .6s step-end infinite; - + animation: typing 5s steps({{ strings.RuneCount .Site.Params.homeSubtitle }}, end),blink-caret .75s step-end infinite; } /* The typing effect */ @keyframes typing { - from { width: 0 } - to { width: 100% } + from {max-width: 0;} + to {max-width: 100%;} } /* The typewriter cursor effect */