Skip to content

Commit

Permalink
chore(app): Reduce channel config modal height to match order modal h…
Browse files Browse the repository at this point in the history
…eight.
  • Loading branch information
holzeis committed Feb 28, 2024
1 parent b2d1d5a commit 63043bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mobile/lib/features/trade/channel_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ channelConfiguration({
},
child: SingleChildScrollView(
child: SizedBox(
height: 520,
height: 470,
child: ChannelConfiguration(
tradeValues: tradeValues,
onConfirmation: onConfirmation,
Expand Down Expand Up @@ -145,7 +145,7 @@ class _ChannelConfiguration extends State<ChannelConfiguration> {
),
Center(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10),
padding: const EdgeInsets.only(top: 10),
child: Column(
children: [
Wrap(
Expand Down Expand Up @@ -217,7 +217,7 @@ class _ChannelConfiguration extends State<ChannelConfiguration> {
type: ValueType.amount,
value: ownTotalCollateral.add(openingFee),
label: "Total"),
const SizedBox(height: 30),
const SizedBox(height: 10),
Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.end,
Expand Down

0 comments on commit 63043bb

Please sign in to comment.