summaryrefslogtreecommitdiff
path: root/sass/abstracts/_animations.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/abstracts/_animations.scss')
-rw-r--r--sass/abstracts/_animations.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/sass/abstracts/_animations.scss b/sass/abstracts/_animations.scss
index 819b356..48c0ce6 100644
--- a/sass/abstracts/_animations.scss
+++ b/sass/abstracts/_animations.scss
@@ -30,3 +30,15 @@
transform: translate(0) skewX(-12deg);
}
}
+
+// without skew effect for smaller screens
+@keyframes moveInRightMobile {
+ 0% {
+ opacity: 0;
+ transform: translateX(10rem);
+ }
+ 100% {
+ opacity: 1;
+ transform: translate(0);
+ }
+}