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:
parent
13cbc2cc83
commit
12c3974960
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue