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; +}