feat: add animated dashoffset to SVG spacers on index page (#44)

This PR adds a simple slow moving `dashoffset` animation to the SVG spacers on the `/index` page.

<video src="https://blob.vlw.se/01974ec8-1da9-74b3-9c8b-0ef06ce6cd16.mp4" controls></video>

Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/44
This commit is contained in:
Victor Westerlund 2025-06-12 10:33:50 +02:00
parent 17bd93dca9
commit d5cc7fa82c

View file

@ -49,6 +49,11 @@ vv-shell img {
.menu svg { .menu svg {
width: 100%; width: 100%;
animation: dash 1500ms linear infinite;
}
@keyframes dash {
to { stroke-dashoffset: 32; }
} }
/* ### Copy email button */ /* ### Copy email button */