style: fix shadow on some clerk components

This commit is contained in:
Stevan Freeborn
2023-09-09 20:10:35 -05:00
parent 9416bbaa05
commit 7ed844729b
5 changed files with 28 additions and 5 deletions
+7 -1
View File
@@ -3,7 +3,13 @@ import { UserProfile } from '@clerk/nextjs';
export default function AccountPage() {
return (
<main className='flex flex-col items-center'>
<UserProfile />
<UserProfile
appearance={{
elements: {
card: 'shadow-md',
},
}}
/>
</main>
);
}
+7 -1
View File
@@ -3,7 +3,13 @@ import { SignUp } from '@clerk/nextjs';
export default function SignUpPage() {
return (
<main className='flex flex-col items-center'>
<SignUp />
<SignUp
appearance={{
elements: {
card: 'shadow-md',
},
}}
/>
</main>
);
}