Skip to content

Commit

Permalink
feat: improve the responsivity of the skeletons (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReidyT authored Dec 6, 2023
1 parent af25341 commit 3f0d653
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/item/sharing/shortLink/ShortLinkSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,16 @@ const ShortLinkSkeleton = (): JSX.Element => {
alignItems="center"
justifyContent="space-between"
spacing={2}
flex={1}
>
<StyledBox minWidth="120px" direction="row" spacing={1} color="white">
<Skeleton variant="circular" width={25} height={25} />
<Skeleton variant="text" width={50} />
<StyledBox direction="row" spacing={1} color="white">
<Skeleton variant="circular" width={50} height={25} />
<Skeleton variant="text" width="100%" />
</StyledBox>
<Skeleton variant="text" width={250} />
<Skeleton variant="text" width="100%" />
</Stack>

<Stack direction="row" spacing={2.5} mr={1}>
<Stack direction="row" spacing={2} mr={1} ml={1}>
<Skeleton variant="rounded" width={23} />
<Skeleton variant="rounded" width={23} />
<Skeleton variant="rounded" width={23} />
Expand Down

0 comments on commit 3f0d653

Please sign in to comment.