fix: profile setting overflow (#2834)

This commit is contained in:
Anmol Singh Bhatia 2023-11-22 15:35:51 +05:30 committed by sriram veeraghanta
parent 37559fd69f
commit a1a9015df2

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"}