Skip to content

Commit

Permalink
UI(OperatedGuildCard): light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dovalid committed Aug 8, 2024
1 parent 4a0a5c3 commit 4010f41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/(marketing)/profile/_components/OperatedGuildCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { PropsWithChildren } from "react"

export const OperatedGuildCard = () => {
return (
<Card className="flex flex-col md:flex-row">
<Card className="flex flex-col bg-gray-50 md:flex-row dark:bg-card">
<div className="relative w-full px-4 py-8 md:w-1/3">
<div className="absolute inset-0 bg-black" />
<Image
Expand All @@ -40,7 +40,7 @@ export const OperatedGuildCard = () => {
<Skeleton className="size-full" />
</AvatarFallback>
</Avatar>
<h3 className="text-center font-bold font-display text-xl">
<h3 className="text-center font-bold font-display text-white text-xl">
The Guilded Age Guild
<CheckMark className="ml-2 inline-block size-6" />
</h3>
Expand Down Expand Up @@ -83,7 +83,7 @@ const OperatedGuildDetailCard = ({
Icon,
children,
}: PropsWithChildren<{ Icon: Icon }>) => (
<Card className="flex items-center gap-2 rounded-xl bg-secondary p-5 font-bold">
<Card className="flex items-center gap-2 rounded-xl p-5 font-bold shadow dark:bg-secondary">
<Icon weight="bold" className="min-w-min" />
<span className="text-muted-foreground">{children}</span>
</Card>
Expand Down

0 comments on commit 4010f41

Please sign in to comment.