Skip to content

Commit

Permalink
[Fix] Health-Food-Me#302 - 식당 상세, 블로그 리뷰, 리뷰 쓰기 버튼 QA 반영
Browse files Browse the repository at this point in the history
1. 식당 상세뷰 폰트 크기 수정
2. 블로그 리뷰 폰트 크기 수정
3. 리뷰 쓰기 버튼 round 속성값 변경
  • Loading branch information
yungu0010 committed Sep 29, 2022
1 parent 443fe4b commit a35b640
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ extension MainDetailVC {
}), for: .touchUpInside)
scrapButtonInstance = scrapButton

reviewWriteCTAButton.layer.cornerRadius = 20
let reviewWriteButtonWidth = UIScreen.main.bounds.width * (335 / 375)

reviewWriteCTAButton.layer.cornerRadius = reviewWriteButtonWidth * (44/335) / 2

self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: backButton)
self.navigationItem.rightBarButtonItem = UIBarButtonItem(customView: scrapButton)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ final class MenuView: UIView {
let lb = UILabel()
lb.textColor = .helfmeBlack
lb.numberOfLines = 2
lb.font = .NotoBold(size: 14)
lb.font = .NotoBold(size: 15)
return lb
}()

Expand Down Expand Up @@ -170,6 +170,7 @@ extension MenuView {
make.leading.equalTo(menuImageView.snp.trailing).offset(20)
make.trailing.equalToSuperview().inset(97)
make.centerY.equalTo(menuImageView.snp.centerY)
make.width.equalTo(UIScreen.main.bounds.width * 103)
}

kcalView.addSubview(kcalStackView)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ class BlogReviewCVC: UICollectionViewCell, UICollectionViewRegisterable {
private lazy var blogReviewTitleLabel: UILabel = {
let lb = UILabel()
lb.textColor = .helfmeBlack
lb.font = UIFont.NotoBold(size: 14)
lb.font = UIFont.NotoBold(size: 15)

return lb
}()

private lazy var blogReviewContentsLabel: UILabel = {
let lb = UILabel()
lb.textColor = .helfmeBlack
lb.font = UIFont.NotoRegular(size: 12)
lb.font = UIFont.NotoRegular(size: 13)
lb.numberOfLines = 3
return lb
}()
Expand Down

0 comments on commit a35b640

Please sign in to comment.