Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

issue 196 fix #588

Merged
merged 2 commits into from
Jul 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client/src/Router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default function AppRouter() {
position: "absolute",
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "100vh",
width: "100vw",
backgroundColor: "white",
Expand All @@ -31,7 +32,7 @@ export default function AppRouter() {
right: 0,
}}
>
<img src={loader} alt="Loading" />
<img style={{height: "120px", width: "120px" }} src={loader} alt="Loading" />
</div>
);
}
Expand Down