From e39547e77e6a9ab3ab9919983e1411f283671235 Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Thu, 15 Sep 2022 10:45:33 -0600 Subject: [PATCH] adding a disco thing for animations --- src/resources/css/animations.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/resources/css/animations.css b/src/resources/css/animations.css index 4172f23..68f8db5 100644 --- a/src/resources/css/animations.css +++ b/src/resources/css/animations.css @@ -6,6 +6,13 @@ to { transform: rotate(360deg); } } +/** **/ +@keyframes disco { + from { transform: translateY(-50%) rotate(0deg); } + to { transform: translateY(-50%) rotate(360deg); } +} +/** **/ + .animate-removeRow { animation-name: removeRow; animation-fill-mode: forwards;