From 9ef954a8d5fa7a54c22ce5f9936c7bddc81b6824 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:25:58 -0400 Subject: [PATCH] chore: remove horizontal offset from pressable button widget (#4180) --- lib/pangea/common/widgets/pressable_button.dart | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/pangea/common/widgets/pressable_button.dart b/lib/pangea/common/widgets/pressable_button.dart index 2b6eddd83..dc0aaf475 100644 --- a/lib/pangea/common/widgets/pressable_button.dart +++ b/lib/pangea/common/widgets/pressable_button.dart @@ -172,17 +172,12 @@ class PressableButtonState extends State bottom: !_depressed ? widget.buttonHeight - _tweenAnimation.value : 0, - right: !_depressed - ? (widget.buttonHeight - _tweenAnimation.value) / - 2 - : 0, ), child: child, ), ], ), ), - SizedBox(height: _tweenAnimation.value / 2), ], ); },