Skip to content

Commit

Permalink
💄 style: Update fullscreen loading style (#3948)
Browse files Browse the repository at this point in the history
* 💄 style: Update fullscreen loading style

* fix

* 💄 style: Update loading style
  • Loading branch information
canisminor1990 committed Sep 15, 2024
1 parent 31eb54d commit aec21d2
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/components/FullscreenLoading/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,11 @@ import { ProductLogo } from '@/components/Branding';

const FullscreenLoading = memo<{ title?: string }>(({ title }) => {
return (
<Flexbox height={'100%'} style={{ userSelect: 'none' }} width={'100%'}>
<Center flex={1} gap={12} width={'100%'}>
<Flexbox height={'100%'} style={{ position: 'relative', userSelect: 'none' }} width={'100%'}>
<Center flex={1} gap={16} width={'100%'}>
<ProductLogo size={48} type={'combine'} />
<Center
gap={16}
horizontal
style={{ fontSize: '16px', lineHeight: '1.5', marginTop: '2%' }}
>
<Icon icon={Loader2} spin style={{ fontSize: '16px' }} />
<Center gap={12} horizontal style={{ fontSize: 15, lineHeight: 1.5, opacity: 0.66 }}>
<Icon icon={Loader2} size={{ fontSize: 16 }} spin />
{title}
</Center>
</Center>
Expand Down

0 comments on commit aec21d2

Please sign in to comment.