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>
@keyframes flash {
0% {
color: unset;
color: var(--sl-color-white);
}
50% {
color: var(--sl-color-accent);
}
100% {
color: unset;
color: var(--sl-color-white);
}
}