Skip to content

Commit

Permalink
fix: Reduce space between icon and text
Browse files Browse the repository at this point in the history
Otherwise we are running into a rendering overflow on smaller screens (iPhone SE).
  • Loading branch information
holzeis committed Dec 8, 2023
1 parent 8972658 commit 678d34e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mobile/lib/features/wallet/wallet_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class WalletScreen extends StatelessWidget {
FontAwesomeIcons.arrowDown,
size: 14,
),
SizedBox(width: 10, height: 40),
SizedBox(width: 7, height: 40),
Text(
'Receive',
style: TextStyle(fontSize: 14, fontWeight: FontWeight.normal),
Expand All @@ -81,7 +81,7 @@ class WalletScreen extends StatelessWidget {
size: 14,
),
SizedBox(
width: 10,
width: 7,
height: 40,
),
Text(
Expand All @@ -105,7 +105,7 @@ class WalletScreen extends StatelessWidget {
size: 14,
),
SizedBox(
width: 10,
width: 7,
height: 40,
),
Text(
Expand Down

0 comments on commit 678d34e

Please sign in to comment.