From 5b88c86df55311436e62adc02facb75afcc23f5d Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Tue, 29 Apr 2025 00:49:52 +0530 Subject: [PATCH] added Spinning Animation for refresh button --- src/index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/index.css b/src/index.css index 142e58c2..96f19f7b 100644 --- a/src/index.css +++ b/src/index.css @@ -120,3 +120,13 @@ button:focus-visible { ::-webkit-scrollbar-thumb:hover { background-color: #555; /* Color of the thumb on hover */ } + +@keyframes spin { + 100% { + transform: rotate(-360deg); /* Counterclockwise */ + } +} + +.spin { + animation: spin 1s linear infinite; +}