Fix email field height to match other profile fields

The Email field was 50px while First Name/Last Name/Phone were 70px
because they contain Edit buttons with min-h-11 (44px). Changed Email
field to min-h-[70px] for consistent visual height across all profile
fields.
This commit is contained in:
2026-08-22 00:34:51 +01:00
parent efea213ccd
commit 80c5c6ce43
+1 -1
View File
@@ -2064,7 +2064,7 @@ import { generateUUID } from '$lib/utils/uuid';
</div> </div>
<div> <div>
<span class="text-sm font-medium text-gray-600">Email</span> <span class="text-sm font-medium text-gray-600">Email</span>
<div class="mt-1 flex items-center justify-between rounded-lg border bg-gray-50 p-3 font-medium min-h-[44px]"> <div class="mt-1 flex items-center justify-between rounded-lg border bg-gray-50 p-3 font-medium min-h-[70px]">
<span>{userData.email}</span> <span>{userData.email}</span>
</div> </div>
</div> </div>