diff --git a/src/components/Flows/Flows.module.css b/src/components/Flows/Flows.module.css deleted file mode 100644 index c0b9a35dd..000000000 --- a/src/components/Flows/Flows.module.css +++ /dev/null @@ -1,12 +0,0 @@ -@keyframes rotation { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.SyncIcon { - animation: rotation 2s infinite linear; -} diff --git a/src/components/Flows/Flows.tsx b/src/components/Flows/Flows.tsx index b56cb411d..b8aa4db57 100644 --- a/src/components/Flows/Flows.tsx +++ b/src/components/Flows/Flows.tsx @@ -16,9 +16,9 @@ import { List } from '../List/List'; import { lastRunTime, cronToString, trimEmail } from '@/utils/common'; import { ActionsMenu } from '../UI/Menu/Menu'; import Image from 'next/image'; +import styles from '@/styles/Common.module.css'; import { FlowRun } from './SingleFlowRunHistory'; import ConfirmationDialog from '../Dialog/ConfirmationDialog'; -import styles from './Flows.module.css'; import { localTimezone } from '@/utils/common'; import { FlowLogs } from './FlowLogs'; import { useSyncLock } from '@/customHooks/useSyncLock'; diff --git a/src/styles/Common.module.css b/src/styles/Common.module.css index c0b9a35dd..286c46e97 100644 --- a/src/styles/Common.module.css +++ b/src/styles/Common.module.css @@ -1,9 +1,9 @@ @keyframes rotation { from { - transform: rotate(0deg); + transform: rotate(360deg); } to { - transform: rotate(360deg); + transform: rotate(0deg); } }