From b7047c0ec710d41a0f82a7a3a6695260e8117a0b Mon Sep 17 00:00:00 2001 From: kolo Date: Fri, 27 Mar 2026 11:04:01 +0300 Subject: [PATCH] update --- .../account_editor_overlay/account_editor_overlay.dart | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/features/dashboard/widgets/account_editor_overlay/account_editor_overlay.dart b/lib/features/dashboard/widgets/account_editor_overlay/account_editor_overlay.dart index c559837..35a6041 100644 --- a/lib/features/dashboard/widgets/account_editor_overlay/account_editor_overlay.dart +++ b/lib/features/dashboard/widgets/account_editor_overlay/account_editor_overlay.dart @@ -85,7 +85,7 @@ class _AccountEditorOverlayState extends State { Widget build(BuildContext context) { final mq = MediaQuery.of(widget.context); final cardTop = mq.padding.top + kToolbarHeight + 16; - const cardHeight = 220.0; + const cardHeight = 230.0; const editorPanelHeight = 102.0; final editorPanelTop = cardTop + cardHeight + 20; final colorPanelTop = editorPanelTop + editorPanelHeight + 12; @@ -202,9 +202,7 @@ class _AccountEditorOverlayState extends State { widthFactor: 0.92, child: SizedBox( height: cardHeight, - child: Align( - alignment: Alignment.topCenter, - child: Padding( + child: Padding( padding: const EdgeInsets.symmetric(horizontal: 8), child: BalanceCard( balance: previewBalance, @@ -224,7 +222,6 @@ class _AccountEditorOverlayState extends State { : dash.tempLightGradientType, ), ), - ), ), ), ),