mirror of
https://github.com/aaronpenne/move-completed-tasks.git
synced 2026-07-22 07:44:53 +00:00
9 lines
270 B
CSS
9 lines
270 B
CSS
@keyframes move-completed-flash {
|
|
0% { background-color: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.12); }
|
|
100% { background-color: transparent; }
|
|
}
|
|
|
|
.move-completed-highlight {
|
|
animation: move-completed-flash 1.8s ease-out;
|
|
border-radius: 3px;
|
|
}
|