summaryrefslogtreecommitdiffhomepage
path: root/cloud/web/src/ui/style/token/animation.css
diff options
context:
space:
mode:
Diffstat (limited to 'cloud/web/src/ui/style/token/animation.css')
-rw-r--r--cloud/web/src/ui/style/token/animation.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/cloud/web/src/ui/style/token/animation.css b/cloud/web/src/ui/style/token/animation.css
new file mode 100644
index 000000000..a8edfeff5
--- /dev/null
+++ b/cloud/web/src/ui/style/token/animation.css
@@ -0,0 +1,23 @@
+@keyframes zoomIn {
+ from {
+ opacity: 0;
+ transform: scale(0.95);
+ }
+
+ to {
+ opacity: 1;
+ transform: scale(1);
+ }
+}
+
+@keyframes zoomOut {
+ from {
+ opacity: 1;
+ transform: scale(1);
+ }
+
+ to {
+ opacity: 0;
+ transform: scale(0.95);
+ }
+}