Push simulated cursor (I'll ask for design help next)

This commit is contained in:
Jorge Manrubia
2025-07-02 16:05:50 +02:00
parent 18afaa87c2
commit 09ee0324cd
2 changed files with 16 additions and 0 deletions
+6
View File
@@ -50,4 +50,10 @@
@keyframes zoom-fade {
100% { transform: translateY(-1.5em); scale: 2; opacity: 0; }
}
@keyframes blink {
50% {
border-color: transparent;
}
}
}
@@ -363,4 +363,14 @@
--attachment-text-color: var(--color-ink-inverted);
}
}
[data-lexical-cursor] {
height: 1lh;
border-left: 1px solid black;
animation: blink 1s step-end infinite;
p & {
display: inline-block;
}
}
}