LoadingScreen: bump up spinner vertically to counteract optical illusion
This commit is contained in:
parent
4992862943
commit
2b7f4694da
1 changed files with 4 additions and 1 deletions
|
@ -10,7 +10,10 @@ const LoadingScreen: React.FC = () => {
|
||||||
<LandingGradient />
|
<LandingGradient />
|
||||||
|
|
||||||
<div className='fixed h-screen w-screen flex items-center justify-center z-10'>
|
<div className='fixed h-screen w-screen flex items-center justify-center z-10'>
|
||||||
<Spinner size={40} withText={false} />
|
{/* Bump up spinner vertically to counteract optical illusion. */}
|
||||||
|
<div className='-translate-y-3/4'>
|
||||||
|
<Spinner size={40} withText={false} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue