Caret color
All checks were successful
Deploy Stable Website / Build and Deploy (push) Successful in 53s

This commit is contained in:
2026-03-23 17:46:05 +01:00
parent 17dc8342cb
commit ce958e93fb

View File

@@ -42,7 +42,7 @@
.welcome-typewriter-nostyle {
min-height: 1em;
border-right: 2px solid orange;
border-right: 2px solid rgb(var(--accent-base));
margin: 0 auto;
display: block;
overflow-x: hidden;
@@ -70,7 +70,7 @@
display: inline-block;
height: 1em;
width: 0px;
border-right: 2px solid orange;
border-right: 2px solid rgb(var(--accent-base));
animation: blink-caret 1s step-end infinite;
}
@@ -79,7 +79,7 @@
}
@keyframes blink-caret {
from, to { border-color: orange }
from, to { border-color: rgb(var(--accent-base)) }
50% { border-color: transparent; }
}