about summary refs log tree commit diff
path: root/src/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css9
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;