From f42872c125687d268fc53052bc9ac27897d2edc0 Mon Sep 17 00:00:00 2001 From: Nutcake Date: Tue, 11 Jul 2023 18:47:18 +0200 Subject: [PATCH] Fix asymmetric padding in my-profile dialog --- lib/widgets/my_profile_dialog.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/widgets/my_profile_dialog.dart b/lib/widgets/my_profile_dialog.dart index 0929376..b6c14dd 100644 --- a/lib/widgets/my_profile_dialog.dart +++ b/lib/widgets/my_profile_dialog.dart @@ -88,6 +88,7 @@ class _MyProfileDialogState extends State { Text(dateFormat.format(profile.publicBanExpiration!))], ), StorageIndicator(usedBytes: profile.usedBytes, maxBytes: profile.quotaBytes,), + const SizedBox(height: 12,), ], ), );