From 80c5c6ce43c95dfc272dc16a4762e91526f76184 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Thu, 20 Aug 2026 14:03:38 +0100 Subject: [PATCH] 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. --- frontend/src/routes/account/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/account/+page.svelte b/frontend/src/routes/account/+page.svelte index 93bdf8d..ca93d8c 100644 --- a/frontend/src/routes/account/+page.svelte +++ b/frontend/src/routes/account/+page.svelte @@ -2064,7 +2064,7 @@ import { generateUUID } from '$lib/utils/uuid';
Email -
+
{userData.email}