Browse Source

fix(chat): reposition chat loading spinner

pull/3135/head
Gabe Kangas 3 years ago
parent
commit
65d52072d4
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 2
      web/components/ui/Sidebar/Sidebar.tsx

2
web/components/ui/Sidebar/Sidebar.tsx

@ -28,7 +28,7 @@ export const Sidebar: FC = () => { @@ -28,7 +28,7 @@ export const Sidebar: FC = () => {
if (!currentUser) {
return (
<Sider className={styles.root} collapsedWidth={0} width={320}>
<Spin spinning size="large" />
<Spin spinning size="large" style={{ position: 'relative', top: '40vh' }} />
</Sider>
);
}

Loading…
Cancel
Save