We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d48e953 commit 757307dCopy full SHA for 757307d
src/pages/what-is-ethereum.tsx
@@ -83,7 +83,14 @@ const Hero = (props: ChildOnlyProp) => (
83
)
84
85
const Summary = ({ className, ...rest }: HTMLAttributes<HTMLDivElement>) => (
86
- <div className={cn("rounded bg-main-gradient p-4", className)} {...rest} />
+ <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
+ />
94
95
96
const Content = (props: ChildOnlyProp) => (
0 commit comments