Skip to content

Commit 2f1ebb1

Browse files
committed
Updated inline styles to replace @emotion styling
1 parent 2269425 commit 2f1ebb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/Loader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const handleResult = (result: boolean): JSX.Element =>
1717
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
1818
const Loader = ({ loading, result }): JSX.Element =>
1919
loading ? (
20-
<ClipLoader color='#123abc' size={30} loading={loading} />
20+
<ClipLoader color='#123abc' size={30} loading={loading} style={{ display: "inline", margin: "0 auto" }}/>
2121
) : (
2222
handleResult(result)
2323
);

0 commit comments

Comments
 (0)