Skip to content

Commit

Permalink
chor: CardCell에 Rounded기능과 DropShadow 함수 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MaraMincho committed Nov 17, 2023
1 parent 7b7783f commit 12973f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ExerciseCardCell: UICollectionViewCell {

override init(frame: CGRect) {
super.init(frame: frame)
shadowDecorate()
makeShaodwAndRounded()
backgroundColor = .white
setupConstraints()
}
Expand Down Expand Up @@ -75,7 +75,7 @@ private extension ExerciseCardCell {
exerciseIcon.bottomAnchor.constraint(equalTo: exerciseIconDescriptionLagel.topAnchor, constant: -15).isActive = true
}

func shadowDecorate() {
func makeShaodwAndRounded() {
let radius: CGFloat = 10
contentView.layer.cornerRadius = radius
contentView.layer.borderWidth = 1
Expand Down

0 comments on commit 12973f1

Please sign in to comment.