Skip to content

Commit

Permalink
refactor/#301 아이콘 크기 및 색상 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaybei committed Aug 23, 2024
1 parent b0468e6 commit 44ed84a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions KkuMulKum/Source/Home/View/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ final class HomeView: BaseView {
}

let todayButton = UIButton().then {
let icon = UIImage(resource: .iconRight)
let icon = UIImage(resource: .iconRight).withTintColor(.gray4)
$0.setImage(icon, for: .normal)
}

Expand Down Expand Up @@ -210,7 +210,8 @@ final class HomeView: BaseView {
todayButton.snp.makeConstraints {
$0.trailing.equalToSuperview().offset(-20)
$0.centerY.equalTo(todayLabel.snp.centerY)
$0.size.equalTo(20)
$0.height.equalTo(Screen.height(24))
$0.width.equalTo(Screen.width(24))
}

todayPromiseView.snp.makeConstraints {
Expand Down

0 comments on commit 44ed84a

Please sign in to comment.