From 08d3781a7c695b61d3b86035689d636ca47520bf Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Fri, 9 Jan 2026 19:02:06 -0800 Subject: [PATCH] feat: make timeline avatars grow --- site/index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/site/index.html b/site/index.html index 08ade52..0666802 100644 --- a/site/index.html +++ b/site/index.html @@ -364,6 +364,13 @@ align-items: center; justify-content: center; overflow: hidden; + transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease; + } + + .timeline-avatar:hover { + width: 120px; + height: 120px; + transform: translateX(-50%) scale(1); } .timeline-avatar img { @@ -560,6 +567,11 @@ width: 60px; height: 60px; } + + .timeline-avatar:hover { + width: 150px; + height: 150px; + } } @media (max-width: 720px) {