From c9d1af80675471b429469b664acedd6782b9b4e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Thu, 29 Jan 2026 00:28:01 +0100 Subject: [PATCH] Adjust spacing in account settings dialog for improved layout --- b0esche_cloud/lib/widgets/account_settings_dialog.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/b0esche_cloud/lib/widgets/account_settings_dialog.dart b/b0esche_cloud/lib/widgets/account_settings_dialog.dart index e6288be..ebdb7f4 100644 --- a/b0esche_cloud/lib/widgets/account_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/account_settings_dialog.dart @@ -472,7 +472,7 @@ class _AccountSettingsDialogState extends State { Center( child: Column( children: [ - const SizedBox(height: 32), + const SizedBox(height: 64), GestureDetector( onTap: _pickAndUploadAvatar, child: CircleAvatar( @@ -557,7 +557,7 @@ class _AccountSettingsDialogState extends State { ), ), ), - const SizedBox(height: 32), // Space for logout button + const SizedBox(height: 2), // Space for logout button ], ), ),