Animate refresh indicator show/hide

This commit is contained in:
2025-03-02 12:52:29 +00:00
parent 019bdf9ce6
commit 5a6b535beb
2 changed files with 15 additions and 6 deletions

View File

@@ -32,3 +32,11 @@
overlay > frame.osd {
border-radius: 0 0 8px 8px;
}
.popdown {
transition: transform 200ms ease-in-out;
transform: translateY(-100px);
}
.popdown.visible {
transform: translateY(0);
}