Skip to content

Commit 757307d

Browse files
committed
chore: update card gradient per review
1 parent d48e953 commit 757307d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/pages/what-is-ethereum.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,14 @@ const Hero = (props: ChildOnlyProp) => (
8383
)
8484

8585
const Summary = ({ className, ...rest }: HTMLAttributes<HTMLDivElement>) => (
86-
<div className={cn("rounded bg-main-gradient p-4", className)} {...rest} />
86+
<div
87+
className={cn(
88+
"rounded p-4",
89+
"border-accent-c/10 bg-gradient-to-t from-accent-c/10 from-20% to-accent-c/5 to-60% dark:from-accent-c/20 dark:to-accent-c/10",
90+
className
91+
)}
92+
{...rest}
93+
/>
8794
)
8895

8996
const Content = (props: ChildOnlyProp) => (

0 commit comments

Comments
 (0)