Skip to content

Commit

Permalink
fix: Feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Lnamw committed Mar 14, 2024
1 parent 8d3b1c0 commit dd9a18b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ struct CurrentComposeMailboxView: View {
)) {
Text(MailResourcesStrings.Localizable.buttonSendWithDifferentAddress)
.textStyle(.bodyMediumAccent)
.padding(.bottom, UIPadding.onBoardingBottomButtons)
}
.buttonStyle(.ikLink())
.padding(.bottom, UIPadding.onBoardingBottomButtons)
}
.ikButtonFullWidth(true)
.controlSize(.large)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ struct SelectComposeMailboxView: View {
let account = accountManager.account(for: selectedMailbox.userId), viewModel.selectionMade {
SelectedMailboxView(account: account, selectedMailbox: selectedMailbox)
.padding(.horizontal, value: .medium)
.padding(.bottom, value: .regular)
}

Button(MailResourcesStrings.Localizable.buttonContinue, action: viewModel.validateMailboxChoice)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ struct SelectedMailboxView: View {
RoundedRectangle(cornerRadius: 8)
.fill(MailResourcesAsset.textFieldColor.swiftUIColor)
)
.padding(.bottom, value: .regular)
}
}

Expand Down

0 comments on commit dd9a18b

Please sign in to comment.