diff --git a/lib/pangea/common/widgets/pressable_button.dart b/lib/pangea/common/widgets/pressable_button.dart index 2f662efcb..87bbb837e 100644 --- a/lib/pangea/common/widgets/pressable_button.dart +++ b/lib/pangea/common/widgets/pressable_button.dart @@ -165,7 +165,10 @@ class PressableButtonState extends State child: Column( mainAxisSize: MainAxisSize.min, children: [ - SizedBox(height: _tweenAnimation.value), + SizedBox( + height: _depressed + ? widget.buttonHeight + : _tweenAnimation.value), Container( decoration: BoxDecoration( color: shadowColor,