Skip to content

Commit 028a95b

Browse files
committed
refactor(border): remove redundant border-border class
1 parent 1e88968 commit 028a95b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/DataProductCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const DataProductCard = ({
3535
data,
3636
}: DataProductCardProps) => {
3737
return (
38-
<LinkBox className="flex flex-col overflow-hidden rounded border border-border shadow-table-box transition-transform duration-100 ease-linear hover:scale-[1.02] hover:bg-background-highlight focus:scale-[1.02] focus:bg-background-highlight">
38+
<LinkBox className="flex flex-col overflow-hidden rounded border shadow-table-box transition-transform duration-100 ease-linear hover:scale-[1.02] hover:bg-background-highlight focus:scale-[1.02] focus:bg-background-highlight">
3939
<Flex
4040
className={
4141
"min-h-[200px] items-center justify-center shadow-[rgb(0_0_0/_10%)_0px_-1px_0px_inset]"
@@ -61,11 +61,11 @@ const DataProductCard = ({
6161
<p className="mx-4 mb-4 text-sm leading-[140%]">{description}</p>
6262
</div>
6363
{data && (
64-
<div className="mb-4 max-h-[160px] overflow-y-scroll border-t border-border">
64+
<div className="mb-4 max-h-[160px] overflow-y-scroll border-t">
6565
{data.map(({ logo, coin, apy }, idx) => (
6666
<Flex
6767
key={idx}
68-
className="justify-between border border-x-0 border-border p-4 text-sm uppercase"
68+
className="justify-between border border-x-0 p-4 text-sm uppercase"
6969
>
7070
<Flex className="items-center">
7171
{logo && (

0 commit comments

Comments
 (0)