From 0a341c08423151cf2bc3d2ce8cb7192026cf4935 Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Sat, 11 Feb 2023 19:55:41 +0100 Subject: Responsive design --- sass/abstracts/_animations.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'sass/abstracts/_animations.scss') 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); + } +} -- cgit v1.2.3