diff --git a/client/components/App.vue b/client/components/App.vue index 9232d1c1..71f8e346 100644 --- a/client/components/App.vue +++ b/client/components/App.vue @@ -270,6 +270,14 @@ body, html, #app { animation: rotating 2s linear infinite; } +@keyframes rotating { + from { + transform: rotate(0deg); + } to { + transform: rotate(360deg); + } +} + .notify-button-icon { font-size: 16px !important; }