Skip to content

Commit

Permalink
style: fix placeholder image background
Browse files Browse the repository at this point in the history
  • Loading branch information
aykutkardas committed Mar 3, 2024
1 parent 63e26cd commit c9a3242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/model-compare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const ModelCompare = ({
/>
</div>
) : (
<div className="w-full md:w-1/2 bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<div className="w-full md:w-1/2 bg-neutral-200 dark:bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<Image
width={150}
height={150}
Expand Down
4 changes: 2 additions & 2 deletions components/original-compare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const OriginalCompare = ({
)} */}
</div>
) : (
<div className="w-full bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<div className="w-full bg-neutral-200 dark:bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<Image
width={150}
height={150}
Expand Down Expand Up @@ -140,7 +140,7 @@ const OriginalCompare = ({
/>
</div>
) : (
<div className="w-full bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<div className="w-full bg-neutral-200 dark:bg-neutral-900 h-96 md:h-[512px] flex items-center justify-center">
<Image
width={150}
height={150}
Expand Down

0 comments on commit c9a3242

Please sign in to comment.