Make the font larger 20pt in the wallet tab, token value #3766

pull/3779/head
Jerome Chan 3 years ago
parent 5cb5efc8b4
commit 04ac3258a7
  1. 4
      AlphaWallet/Style/AppStyle.swift
  2. 2
      AlphaWallet/Tokens/Views/EthTokenViewCell.swift

@ -93,7 +93,7 @@ struct Colors {
static let navigationTitleColor = UIColor.black
static let navigationButtonTintColor = R.color.mine()!
static let appWhite = UIColor.white
static let appText = UIColor(red: 47, green: 47, blue: 47)
static let appText = R.color.black()!
static let appSubtitle = UIColor(red: 117, green: 117, blue: 117)
static let appHighlightGreen = UIColor(red: 117, green: 185, blue: 67)
static let appActionButtonGreen = UIColor(red: 105, green: 200, blue: 0)
@ -311,7 +311,7 @@ enum Screen {
static let blockChainName = Fonts.semibold(size: 12)
static let valueChangeLabel = Fonts.regular(size: 15)
static let placeholderLabel = Fonts.regular(size: 17)
static let valueChangeValue = Fonts.semibold(size: 17)
static let valueChangeValue = Fonts.semibold(size: 20)
}
enum Color {

@ -117,7 +117,7 @@ class EthTokenViewCell: UITableViewCell {
tokenIconImageView.heightAnchor.constraint(equalToConstant: 40),
tokenIconImageView.widthAnchor.constraint(equalToConstant: 40),
row1.heightAnchor.constraint(greaterThanOrEqualToConstant: 20),
stackView.anchorsConstraint(to: background, edgeInsets: .init(top: 12, left: 20, bottom: 16, right: 12)),
stackView.anchorsConstraint(to: background, edgeInsets: .init(top: 12, left: 16, bottom: 15, right: 16)),
background.anchorsConstraint(to: contentView)
])
}

Loading…
Cancel
Save