Skip to content

Commit

Permalink
他に合わせた色にする
Browse files Browse the repository at this point in the history
  • Loading branch information
k35o committed Jul 31, 2024
1 parent 4cf94b5 commit e30cbbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/blog/_components/blog-card/blog-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const BlogCard = <T extends string>({
{isExternal ? (
<a href={link} target="_blank" rel="noopener noreferrer">
<div className="flex gap-6 p-4">
<div className="flex h-32 w-32 shrink-0 items-center justify-center rounded-lg bg-gray text-7xl">
<div className="flex h-32 w-32 shrink-0 items-center justify-center rounded-lg bg-bgLight text-7xl">
{emotion}
</div>
<div className="flex w-full flex-col justify-around">
Expand All @@ -43,7 +43,7 @@ export const BlogCard = <T extends string>({
) : (
<Link href={link as Route<T>}>
<div className="flex gap-6 p-4">
<div className="flex h-32 w-32 shrink-0 items-center justify-center rounded-lg bg-gray text-7xl">
<div className="flex h-32 w-32 shrink-0 items-center justify-center rounded-lg bg-bgLight text-7xl">
{emotion}
</div>
<div className="flex w-full flex-col justify-around">
Expand Down

0 comments on commit e30cbbd

Please sign in to comment.