Fix anchor flashing

This commit is contained in:
Ben C 2023-11-29 16:22:52 -05:00
parent 5db7e6b156
commit 0a77493156
No known key found for this signature in database

View File

@ -99,13 +99,13 @@ const HeadingTag = levelMap[level] ?? "h6";
<style> <style>
@keyframes flash { @keyframes flash {
0% { 0% {
color: unset; color: var(--sl-color-white);
} }
50% { 50% {
color: var(--sl-color-accent); color: var(--sl-color-accent);
} }
100% { 100% {
color: unset; color: var(--sl-color-white);
} }
} }