Skip to content

Commit 57ac825

Browse files
committed
fix styles
1 parent 0bf5732 commit 57ac825

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

app/[locale]/10years/_components/CurrentTorchHolderCard.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ const CurrentTorchHolderCard = ({
3737
}: CurrentTorchHolderCardProps) => {
3838
return (
3939
<Card
40-
className={cn("w-full overflow-hidden rounded-3xl shadow-xl", className)}
40+
className={cn(
41+
"w-full overflow-hidden rounded-3xl bg-background-highlight shadow-xl",
42+
className
43+
)}
4144
>
4245
<CardHeader className="bg-[#161A36]">
4346
<div className="relative">

app/[locale]/10years/_components/TorchHistoryCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ const TorchHistoryCard: React.FC<TorchHistoryCardProps> = ({
7272
<div>{role}</div>
7373
{!isPlaceholder && (
7474
<>
75-
<div className="text-xs text-body-medium">
75+
<div className="text-xs text-gray-500">
7676
From {formatDate(from)} to {formatDate(to)}
7777
</div>
7878
<BaseLink
7979
href={getTxEtherscanUrl(transactionHash)}
80-
className="text-xs"
80+
className="text-xs text-purple-600 hover:text-purple-500"
8181
>
8282
View on Etherscan
8383
</BaseLink>

0 commit comments

Comments
 (0)