diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-12 21:18:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-12 21:18:26 +0000 |
commit | 5d3e2e14679b3d8eafdf9a563727ec46a7a370ea (patch) | |
tree | 15c3857e2706085105e26a8a06eac4cd96ad2d04 /src/style.css | |
parent | 521a764d4f896518af7f668e2d196b720461ec13 (diff) | |
download | voidsky-5d3e2e14679b3d8eafdf9a563727ec46a7a370ea.tar.zst |
Better animations for dialogs, animate web composer (#7703)
* animation atoms, use for modals * respect reduced motion * simplify animtions * fix atoms
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css index 96c51014f..770cb5e00 100644 --- a/src/style.css +++ b/src/style.css @@ -205,6 +205,15 @@ input:focus { } } +@keyframes zoomIn { + from { + transform: scale(0.95); + } + to { + transform: scale(1); + } +} + .force-no-clicks > *, .force-no-clicks * { pointer-events: none !important; |