about: wip popover

This commit is contained in:
Agahnim 2026-05-13 18:45:41 +02:00
parent 750a070a0e
commit ad528e7c6c
No known key found for this signature in database

View file

@ -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);
}
}
}