fix: spinner rotates in arrow direction (#13)

Spinner arrow pointed one way but rotated the opposite way. Changed
rotation from clockwise (360deg) to counterclockwise (-360deg).

Co-authored-by: opencode-agent <agent@slaid098.dev>
This commit is contained in:
Sergey 2026-07-08 15:59:48 +03:00 committed by GitHub
parent 13cbc2cc83
commit 12c3974960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,7 +119,7 @@ function createButtonStyle(): string {
} }
@keyframes ocvd-spin { @keyframes ocvd-spin {
from { transform: rotate(0deg); } from { transform: rotate(0deg); }
to { transform: rotate(360deg); } to { transform: rotate(-360deg); }
} }
.ocvd-spin { .ocvd-spin {
animation: ocvd-spin 0.8s linear infinite; animation: ocvd-spin 0.8s linear infinite;