From 205f11d67713bc0d5f285eceedaac05fb9f08e79 Mon Sep 17 00:00:00 2001 From: on4r Date: Tue, 11 Jan 2022 21:23:46 +0100 Subject: [PATCH] chore: rotate the spinner clockwise (#1765) --- frontend/src/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/css/styles.css b/frontend/src/css/styles.css index 5bcfe703..8aa713d5 100644 --- a/frontend/src/css/styles.css +++ b/frontend/src/css/styles.css @@ -365,7 +365,7 @@ main .spinner .bounce2 { @keyframes spin { 100% { - transform: rotate(-360deg); + transform: rotate(360deg); } }