summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-06-09 14:47:03 +0200
committerArmand Philippot <git@armandphilippot.com>2022-06-09 14:47:03 +0200
commitaa8c55e48f3cdbb52e3d24e6b2e71ac0f23ec13c (patch)
tree0654c43713ba3728dd049b1917c1bbcea971ff9a /src
parentb9f3024987404e3617afcb0c0ff29e0944fa945b (diff)
chore(toolbar): add missing animation on medium and large devices
Diffstat (limited to 'src')
-rw-r--r--src/components/organisms/toolbar/toolbar.module.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/organisms/toolbar/toolbar.module.scss b/src/components/organisms/toolbar/toolbar.module.scss
index 39cd6fe..60f41f1 100644
--- a/src/components/organisms/toolbar/toolbar.module.scss
+++ b/src/components/organisms/toolbar/toolbar.module.scss
@@ -25,6 +25,10 @@
:global {
animation: slide-in-from-bottom 0.8s ease-in-out 0s 1;
+
+ @media screen and (min-width: #{var.get-breakpoint("sm")}) {
+ animation: slide-in-from-top 0.8s ease-in-out 0s 1;
+ }
}
@media screen and (max-width: #{var.get-breakpoint("sm")}) {