Skip to content

Commit

Permalink
fix: PublicationShimmer
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Jan 21, 2024
1 parent e4e9882 commit 7e8f4b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/src/components/Shared/Shimmer/PublicationShimmer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import type { FC } from 'react';

const PublicationShimmer: FC = () => {
return (
<div className="flex items-start space-x-3 p-5">
<div className="flex items-start space-x-3 px-5 py-4">
<div>
<div className="shimmer size-11 rounded-full" />
</div>
<div className="w-full space-y-4">
<div className="item flex justify-between">
<div className="item flex space-x-3">
<div className="item flex space-x-3 pt-1">
<div className="shimmer h-3 w-28 rounded-lg" />
<div className="shimmer h-3 w-20 rounded-lg" />
</div>
Expand All @@ -18,7 +18,7 @@ const PublicationShimmer: FC = () => {
<div className="shimmer h-3 w-7/12 rounded-lg" />
<div className="shimmer h-3 w-1/3 rounded-lg" />
</div>
<div className="flex gap-7 pt-1">
<div className="flex gap-8 pt-1">
<div className="shimmer size-5 rounded-lg" />
<div className="shimmer size-5 rounded-lg" />
<div className="shimmer size-5 rounded-lg" />
Expand Down

0 comments on commit 7e8f4b5

Please sign in to comment.