Skip to content

Commit

Permalink
align loader in the center
Browse files Browse the repository at this point in the history
  • Loading branch information
andreymikhadyuk committed Dec 12, 2023
1 parent a8ae670 commit f0b60df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,7 @@
align-self: unset;
}
}

.loader {
margin: 0 auto;
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const LinkSpaceModal: FC<DirectMessageModalProps> = (props) => {

const renderContent = (): ReactElement => {
if (isStreamLinking) {
return <Loader />;
return <Loader className={styles.loader} />;
}

return (
Expand Down

0 comments on commit f0b60df

Please sign in to comment.