LoadingScreen: bump up spinner vertically to counteract optical illusion

This commit is contained in:
Alex Gleason 2022-05-22 13:27:08 -05:00
parent 4992862943
commit 2b7f4694da
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -10,9 +10,12 @@ const LoadingScreen: React.FC = () => {
<LandingGradient />
<div className='fixed h-screen w-screen flex items-center justify-center z-10'>
{/* Bump up spinner vertically to counteract optical illusion. */}
<div className='-translate-y-3/4'>
<Spinner size={40} withText={false} />
</div>
</div>
</div>
);
};