From d5cc7fa82cbe531c5b126067dc021625c1994c6b Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 12 Jun 2025 10:33:50 +0200 Subject: [PATCH] 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. Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/44 --- public/assets/css/pages/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/assets/css/pages/index.css b/public/assets/css/pages/index.css index da152ec..d9836ca 100644 --- a/public/assets/css/pages/index.css +++ b/public/assets/css/pages/index.css @@ -49,6 +49,11 @@ vv-shell img { .menu svg { width: 100%; + animation: dash 1500ms linear infinite; +} + +@keyframes dash { + to { stroke-dashoffset: 32; } } /* ### Copy email button */