Skip to content

Commit

Permalink
styles: add missing padding
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Apr 21, 2024
1 parent 85a64eb commit 1ff7220
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/NFTImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ export default function NFTImage({ citizen }: any) {
})

if (!useIsMounted() || isLoading) {
return <LoadingIndicator />
return (
<div className='p-4'>
<LoadingIndicator />
</div>
)
} else {
let image: any = null
if (data) {
Expand Down

0 comments on commit 1ff7220

Please sign in to comment.