From f90fe553725d9374a7b13a96d2133f2a4c8815ff Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sun, 4 Jan 2026 23:19:38 -0600 Subject: [PATCH] feat(styles): add spin-reverse animation and corresponding class for enhanced loading effects --- meshchatx/src/frontend/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/meshchatx/src/frontend/style.css b/meshchatx/src/frontend/style.css index 9e9cc94..c5b0f79 100644 --- a/meshchatx/src/frontend/style.css +++ b/meshchatx/src/frontend/style.css @@ -167,3 +167,16 @@ select.input-field option { -ms-overflow-style: none; scrollbar-width: none; } + +@keyframes spin-reverse { + from { + transform: rotate(360deg); + } + to { + transform: rotate(0deg); + } +} + +.animate-spin-reverse { + animation: spin-reverse 1s linear infinite; +}