Skip to content

Commit dafa1b5

Browse files
committed
Fix cursor disappearing at end of bio text by setting opacity to 0
1 parent 1228741 commit dafa1b5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ <h3>Connect</h3>
135135
content: '_';
136136
color: var(--gold-primary);
137137
animation:
138-
blink-caret 0.75s step-end 4s,
138+
blink-caret 0.75s step-end infinite 4s,
139139
hide-cursor 0s 6s forwards;
140140
}
141141

@@ -150,7 +150,10 @@ <h3>Connect</h3>
150150
}
151151

152152
@keyframes hide-cursor {
153-
to { content: ''; }
153+
to {
154+
content: '';
155+
opacity: 0;
156+
}
154157
}
155158

156159
@keyframes fade-in {

0 commit comments

Comments
 (0)