From 12c3974960985088c9f0b404b79d2f6c2ff266d7 Mon Sep 17 00:00:00 2001 From: Sergey <93754860+slaid098@users.noreply.github.com> Date: Wed, 8 Jul 2026 15:59:48 +0300 Subject: [PATCH] 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 --- src/ui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.ts b/src/ui.ts index 064ce0a..39c4b4f 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -119,7 +119,7 @@ function createButtonStyle(): string { } @keyframes ocvd-spin { from { transform: rotate(0deg); } - to { transform: rotate(360deg); } + to { transform: rotate(-360deg); } } .ocvd-spin { animation: ocvd-spin 0.8s linear infinite;