From 86df7999e0b1b3bede9be8688e145b0a9a1d7144 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Thu, 21 Dec 2023 12:30:48 +0100 Subject: [PATCH] adding slide-in-bottom --- resources/css/utilities/animation.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/css/utilities/animation.css b/resources/css/utilities/animation.css index 2debd7e..1287a86 100644 --- a/resources/css/utilities/animation.css +++ b/resources/css/utilities/animation.css @@ -23,6 +23,14 @@ transform: translateY(0%); } } +@keyframes slide-in-bottom { + 0% { + transform: translateY(40%); + } + 100% { + transform: translateY(0%); + } +} @keyframes slide-out { 0% { transform: translateY(0%);