Skip to content

Commit 15ec0b5

Browse files
committed
update colors to use new theme colors
1 parent ffa4dff commit 15ec0b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/wallets/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import HeroImage from "@/public/images/wallets/wallet-hero.png"
3636

3737
export const StyledCard = (props: ComponentPropsWithRef<typeof Card>) => (
3838
<Card
39-
className="m-4 min-w-[280px] max-w-full flex-1 p-6 md:max-w-[46%] lg:max-w-[31%]"
39+
className="m-4 min-w-[280px] max-w-full flex-1 bg-background p-6 md:max-w-[46%] lg:max-w-[31%]"
4040
{...props}
4141
/>
4242
)
@@ -202,7 +202,7 @@ const WalletsPage = () => {
202202
]
203203

204204
return (
205-
<MainArticle className="width-full auto m-0 flex flex-col items-center">
205+
<MainArticle className="mx-auto flex w-full flex-col items-center">
206206
<PageMetadata
207207
title={t("page-wallets-meta-title")}
208208
description={t("page-wallets-meta-description")}
@@ -211,7 +211,7 @@ const WalletsPage = () => {
211211

212212
<PageHero content={heroContent} isReverse />
213213

214-
<div className="mt-4 w-full bg-[--eth-colors-grayBackground] px-0 py-16 shadow-[inset_0px_1px_0px_var(--eth-colors-tableItemBoxShadow)] lg:mt-8">
214+
<div className="mt-4 w-full border-t bg-background-highlight px-0 py-16 lg:mt-8">
215215
<div className="w-full px-8 py-4 pb-0">
216216
<h2 className="mb-0 mt-12 text-2xl leading-[1.4] md:text-[2rem]">
217217
{t("page-wallets-whats-a-wallet")}
@@ -312,7 +312,7 @@ const WalletsPage = () => {
312312
</Simulator>
313313
</div>
314314
) : (
315-
<div className="my-12 mt-4 w-full bg-[linear-gradient(49deg,rgba(127,127,213,0.2)_0%,rgba(134,168,231,0.2)_50%,rgba(145,234,228,0.2)_100%)] px-0 py-16 shadow-[inset_0px_1px_0px_var(--eth-colors-tableItemBoxShadow)] lg:mt-8">
315+
<div className="my-12 mt-4 w-full border-t bg-gradient-main px-0 py-16 lg:mt-8">
316316
<div className="w-full px-8 py-4">
317317
<div className="mb-8 flex flex-col items-center">
318318
<h2 className="mb-8 mt-12 text-2xl leading-[1.4] md:text-[2rem]">

0 commit comments

Comments
 (0)