Skip to content

Commit 9dad75d

Browse files
committed
fix(ui): button spacing
1 parent 1c6ffa9 commit 9dad75d

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

lib/pages/shopinbit/shopinbit_settings_view.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class _ShopInBitSettingsViewState extends ConsumerState<ShopInBitSettingsView> {
240240
).pop(),
241241
),
242242
),
243-
const SizedBox(width: 16),
243+
const SizedBox(width: 24),
244244
Expanded(
245245
child: PrimaryButton(
246246
label: "I saved my key",
@@ -314,7 +314,7 @@ class _ShopInBitSettingsViewState extends ConsumerState<ShopInBitSettingsView> {
314314
),
315315
),
316316
),
317-
const SizedBox(width: 8),
317+
const SizedBox(width: 16),
318318
Expanded(
319319
child: TextButton(
320320
style: Theme.of(context)
@@ -837,7 +837,9 @@ class _VerifyKeyDialogState extends State<_VerifyKeyDialog> {
837837
).pop(false),
838838
),
839839
),
840-
const SizedBox(width: 16),
840+
Util.isDesktop
841+
? const SizedBox(width: 24)
842+
: const SizedBox(width: 16),
841843
Expanded(
842844
child: PrimaryButton(
843845
label: "Confirm",

0 commit comments

Comments
 (0)