Skip to content

Commit

Permalink
Merge pull request #2116 from get10101/chore/improve-confirmation-modal
Browse files Browse the repository at this point in the history
chore(app): Improve formatting on confirmation modal
  • Loading branch information
holzeis committed Feb 29, 2024
2 parents 1ca5d53 + 45ca0f1 commit 0c45e66
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ tradeBottomSheetConfirmation(
},
child: SingleChildScrollView(
child: SizedBox(
height: TradeAction.closePosition == tradeAction ? 320 : 450,
height: TradeAction.closePosition == tradeAction ? 330 : 450,
child: TradeBottomSheetConfirmation(
direction: direction,
sliderButtonKey: sliderButtonKey,
Expand Down Expand Up @@ -153,7 +153,7 @@ class TradeBottomSheetConfirmation extends StatelessWidget {
TextStyle dataRowStyle = const TextStyle(fontSize: 14);

return Container(
padding: const EdgeInsets.all(20),
padding: EdgeInsets.only(left: 20, right: 20, top: (isClose ? 20 : 10), bottom: 10),
child: Column(
children: [
const ContractSymbolIcon(),
Expand All @@ -165,7 +165,7 @@ class TradeBottomSheetConfirmation extends StatelessWidget {
child: Column(
children: [
Wrap(
runSpacing: 10,
runSpacing: 5,
children: [
if (!isClose)
ValueDataRow(
Expand Down

0 comments on commit 0c45e66

Please sign in to comment.