Reverse spin

This commit is contained in:
Elio Struyf
2024-02-12 13:51:24 +01:00
parent c4d3f76510
commit 4565ea75ae
2 changed files with 3 additions and 3 deletions
@@ -154,7 +154,7 @@ export const GitAction: React.FunctionComponent<IGitActionProps> = ({
title={l10n.t(LocalizationKey.commonSync)}
>
<div className="git_actions__sync">
<ArrowPathIcon className={isSyncing === "syncing" ? 'animate-reverse-spin' : ''} aria-hidden="true" />
<ArrowPathIcon className={isSyncing === "syncing" ? 'animate-spin' : ''} aria-hidden="true" />
<span>
{l10n.t(LocalizationKey.commonSync)}
</span>
+2 -2
View File
@@ -4,10 +4,10 @@
/* Animations */
@keyframes spin {
from {
transform: rotate(360deg);
transform: rotate(0deg);
}
to {
transform: rotate(0deg);
transform: rotate(360deg);
}
}