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