File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
app/[locale]/10years/_components Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,10 @@ const CurrentTorchHolderCard = ({
37
37
} : CurrentTorchHolderCardProps ) => {
38
38
return (
39
39
< 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
+ ) }
41
44
>
42
45
< CardHeader className = "bg-[#161A36]" >
43
46
< div className = "relative" >
Original file line number Diff line number Diff line change @@ -72,12 +72,12 @@ const TorchHistoryCard: React.FC<TorchHistoryCardProps> = ({
72
72
< div > { role } </ div >
73
73
{ ! isPlaceholder && (
74
74
< >
75
- < div className = "text-xs text-body-medium " >
75
+ < div className = "text-xs text-gray-500 " >
76
76
From { formatDate ( from ) } to { formatDate ( to ) }
77
77
</ div >
78
78
< BaseLink
79
79
href = { getTxEtherscanUrl ( transactionHash ) }
80
- className = "text-xs"
80
+ className = "text-xs text-purple-600 hover:text-purple-500 "
81
81
>
82
82
View on Etherscan
83
83
</ BaseLink >
You can’t perform that action at this time.
0 commit comments