fix: profile setting overflow (#2834)

This commit is contained in:
Anmol Singh Bhatia 2023-11-22 15:35:51 +05:30 committed by GitHub
parent dd8c7a7487
commit 644b06749b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,7 +160,7 @@ const ProfilePage: NextPageWithLayout = () => {
/>
{myProfile ? (
<form onSubmit={handleSubmit(onSubmit)} className="h-full w-full">
<div className={`flex flex-col gap-8 pr-9 py-9 w-full overflow-y-auto`}>
<div className={`flex flex-col gap-8 pr-9 py-9 w-full h-full overflow-y-auto`}>
<div className="relative h-44 w-full mt-6">
<img
src={watch("cover_image") ?? "https://images.unsplash.com/photo-1506383796573-caf02b4a79ab"}