Improve the alignment of the graphic and text on the Seed Phrase intro screen #2986

pull/3005/head
Vladyslav shepitko 3 years ago
parent 0f54ba8688
commit efdec6e127
  1. 4
      AlphaWallet/Style/AppStyle.swift
  2. 2
      AlphaWallet/Wallet/ViewControllers/ShowSeedPhraseIntroductionViewController.swift

@ -236,8 +236,8 @@ enum Screen {
enum Backup {
static let subtitleFont = ScreenChecker().isNarrowScreen ? Fonts.regular(size: 22) : Fonts.regular(size: 28)
static let subtitleColor = Colors.darkGray
static let descriptionFont = Fonts.regular(size: ScreenChecker.size(big: 18, medium: 16, small: 16))
static let descriptionBoldFont = Fonts.bold(size: ScreenChecker.size(big: 18, medium: 16, small: 16))
static let descriptionFont = Fonts.regular(size: ScreenChecker.size(big: 17, medium: 15, small: 15))
static let descriptionBoldFont = Fonts.bold(size: ScreenChecker.size(big: 17, medium: 15, small: 15))
static let descriptionColor = Colors.darkGray
}

@ -57,7 +57,7 @@ class ShowSeedPhraseIntroductionViewController: UIViewController {
stackView.leadingAnchor.constraint(equalTo: container.leadingAnchor, constant: 16),
stackView.trailingAnchor.constraint(equalTo: container.trailingAnchor, constant: -16),
stackView.centerYAnchor.constraint(equalTo: container.centerYAnchor),
stackView.topAnchor.constraint(equalTo: container.safeAreaLayoutGuide.topAnchor, constant: 16),
container.leadingAnchor.constraint(equalTo: view.leadingAnchor),
container.trailingAnchor.constraint(equalTo: view.trailingAnchor),

Loading…
Cancel
Save