Skip to content

Commit

Permalink
Merge pull request #1278 from DalgoT4D/sync-button-direction-change
Browse files Browse the repository at this point in the history
sync button direction chagned
  • Loading branch information
Ishankoradia authored Nov 2, 2024
2 parents be62ed6 + 1e8e47f commit 5cdf810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions src/components/Flows/Flows.module.css

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/Flows/Flows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions src/styles/Common.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@keyframes rotation {
from {
transform: rotate(0deg);
transform: rotate(360deg);
}
to {
transform: rotate(360deg);
transform: rotate(0deg);
}
}

Expand Down

0 comments on commit 5cdf810

Please sign in to comment.