This commit is contained in:
Zyronon
2025-09-25 01:02:38 +08:00
parent 6ecc9032ab
commit 4b7782a50f
13 changed files with 219 additions and 129 deletions

View File

@@ -444,4 +444,21 @@ a {
.red-point {
@apply bg-red w-3 h-3 rounded-full absolute right-3;
}
.cursor {
position: absolute;
left: 0;
top: 0;
height: 1.8rem;
animation: underline 1s infinite steps(1, start);
}
@keyframes underline {
0%, 100% {
border-left: .1rem solid var(--color-article);
}
50% {
border-left: .1rem solid transparent;
}
}