Skip to content

Commit

Permalink
Merge pull request #7 from 1bl4z3r/deploy
Browse files Browse the repository at this point in the history
FIX : Typewriter carat going away
  • Loading branch information
1bl4z3r authored Jul 21, 2023
2 parents a807772 + 644e54d commit 59c7e5e
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 59c7e5e

Please sign in to comment.