Skip to content

Commit

Permalink
TF-3002 [WEB] Add left padding for All mailbox in destination picke…
Browse files Browse the repository at this point in the history
…r view
  • Loading branch information
dab246 committed Sep 13, 2024
1 parent a64895a commit 6f1c7b2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ class DestinationPickerView extends GetWidget<DestinationPickerController>
MailboxId? mailboxIdSelected
) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
padding: const EdgeInsets.symmetric(horizontal: 24),
child: Material(
color: Colors.transparent,
child: InkWell(
Expand All @@ -494,8 +494,8 @@ class DestinationPickerView extends GetWidget<DestinationPickerController>
child: Row(children: [
SvgPicture.asset(
controller.imagePaths.icFolderMailbox,
width: PlatformInfo.isWeb ? 20 : 24,
height: PlatformInfo.isWeb ? 20 : 24,
width: PlatformInfo.isWeb ? 24 : 20,
height: PlatformInfo.isWeb ? 24 : 20,
fit: BoxFit.fill
),
const SizedBox(width: 8),
Expand Down

0 comments on commit 6f1c7b2

Please sign in to comment.