diff --git a/packages/web/components/templates/ProfileLayout.tsx b/packages/web/components/templates/ProfileLayout.tsx
index 8dffb49eb..af9fd04e9 100644
--- a/packages/web/components/templates/ProfileLayout.tsx
+++ b/packages/web/components/templates/ProfileLayout.tsx
@@ -14,7 +14,6 @@ export function ProfileLayout(props: ProfileLayoutProps): JSX.Element {
alignment="center"
distribution="center"
css={{
- // bg: '$omnivoreYellow',
height: '100vh',
bg: '$omnivoreYellow',
}}
diff --git a/packages/web/components/templates/auth/EmailForgotPassword.tsx b/packages/web/components/templates/auth/EmailForgotPassword.tsx
index 67ff053ad..760c43c43 100644
--- a/packages/web/components/templates/auth/EmailForgotPassword.tsx
+++ b/packages/web/components/templates/auth/EmailForgotPassword.tsx
@@ -15,8 +15,10 @@ const ForgotPasswordForm = (): JSX.Element => {
return (
-
- Email
+
+
+ Email
+
{
value={email}
placeholder="Email"
autoFocus={true}
- css={{ bg: 'white', color: 'black' }}
+ css={{ backgroundColor: '#2A2A2A', color: 'white', border: 'unset' }}
onChange={(e) => {
e.preventDefault()
setEmail(e.target.value)
}}
/>
-
+
)
}
@@ -58,16 +60,16 @@ export function EmailForgotPassword(): JSX.Element {
alignment="center"
css={{
padding: '16px',
- background: 'white',
minWidth: '340px',
width: '70vw',
maxWidth: '576px',
borderRadius: '8px',
- border: '1px solid #3D3D3D',
- boxShadow: '#B1B1B1 9px 9px 9px -9px',
+ background: '#343434',
+ border: '1px solid #6A6968',
+ boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.15)',
}}
>
-
+
Reset your password
@@ -93,7 +95,7 @@ export function EmailForgotPassword(): JSX.Element {
)}
{errorMessage && {errorMessage}}
-