We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2269425 commit 2f1ebb1Copy full SHA for 2f1ebb1
src/app/components/Loader.tsx
@@ -17,7 +17,7 @@ const handleResult = (result: boolean): JSX.Element =>
17
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
18
const Loader = ({ loading, result }): JSX.Element =>
19
loading ? (
20
- <ClipLoader color='#123abc' size={30} loading={loading} />
+ <ClipLoader color='#123abc' size={30} loading={loading} style={{ display: "inline", margin: "0 auto" }}/>
21
) : (
22
handleResult(result)
23
);
0 commit comments