Add d-screen Tailwind utility

This commit is contained in:
Justin
2022-05-24 13:45:00 -04:00
parent 2b7f4694da
commit f2164f09d4
2 changed files with 6 additions and 4 deletions

View File

@@ -9,11 +9,9 @@ const LoadingScreen: React.FC = () => {
<div className='fixed h-screen w-screen'>
<LandingGradient />
<div className='fixed h-screen w-screen flex items-center justify-center z-10'>
<div className='fixed d-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>
<Spinner size={40} withText={false} />
</div>
</div>
);