0

fix(chat): reposition chat loading spinner

This commit is contained in:
Gabe Kangas 2023-07-04 16:11:54 -07:00
parent ea294294bd
commit 65d52072d4
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

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