From ba098d1924769c4b78d486840af27bcbdba0be33 Mon Sep 17 00:00:00 2001 From: Agahnim Date: Wed, 13 May 2026 18:45:41 +0200 Subject: [PATCH] about: wip popover --- static/style.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index fd888bd..a733968 100644 --- a/static/style.css +++ b/static/style.css @@ -727,11 +727,22 @@ about { border: 2px solid var(--lavender); background-color: black; padding: 2rem; - opacity: 1; - transition: all 0.5s; - @starting-style { + opacity: 0; + transform: scaleX(0); + + transition: opacity 0.5s, transform 0.5s; + } + + [popover]:popover-open { + opacity: 1; + transform: scaleX(1); + } + + @starting-style { + [popover]:popover-open { opacity: 0; + transform: scaleX(0); } } }