diff --git a/Projects/Features/CommonFeature/Resources/EditSheetView/EditSheetView.xib b/Projects/Features/CommonFeature/Resources/EditSheetView/EditSheetView.xib index 37eca9d1e..b8944a687 100644 --- a/Projects/Features/CommonFeature/Resources/EditSheetView/EditSheetView.xib +++ b/Projects/Features/CommonFeature/Resources/EditSheetView/EditSheetView.xib @@ -1,9 +1,9 @@ - + - + @@ -11,6 +11,7 @@ + @@ -23,7 +24,7 @@ - + @@ -94,7 +95,7 @@ - + diff --git a/Projects/Features/CommonFeature/Resources/SongCartView/SongCartView.xib b/Projects/Features/CommonFeature/Resources/SongCartView/SongCartView.xib index 085b9c339..b92322f3d 100644 --- a/Projects/Features/CommonFeature/Resources/SongCartView/SongCartView.xib +++ b/Projects/Features/CommonFeature/Resources/SongCartView/SongCartView.xib @@ -1,9 +1,9 @@ - + - + @@ -24,6 +24,7 @@ + @@ -178,7 +179,7 @@ - + diff --git a/Projects/Features/CommonFeature/Sources/Views/EditSheetView.swift b/Projects/Features/CommonFeature/Sources/Views/EditSheetView.swift index 0fb80dcc5..54f235ed9 100644 --- a/Projects/Features/CommonFeature/Sources/Views/EditSheetView.swift +++ b/Projects/Features/CommonFeature/Sources/Views/EditSheetView.swift @@ -22,7 +22,7 @@ public enum EditSheetSelectType { } public class EditSheetView: UIView { - + @IBOutlet weak var contentView: UIView! @IBOutlet weak var editButton: UIButton! @IBOutlet weak var shareButton: UIButton! @IBOutlet weak var profileButton: UIButton! @@ -99,7 +99,7 @@ public extension EditSheetView { } private func configureUI() { - + contentView.backgroundColor = DesignSystemAsset.PrimaryColor.point.color let titles: [String] = ["편집", "공유하기", "프로필 변경", "닉네임 수정"] let images: [UIImage] = [DesignSystemAsset.PlayListEdit.playlistEdit.image, diff --git a/Projects/Features/CommonFeature/Sources/Views/SongCartView.swift b/Projects/Features/CommonFeature/Sources/Views/SongCartView.swift index 6516f6cd0..e7b86e176 100644 --- a/Projects/Features/CommonFeature/Sources/Views/SongCartView.swift +++ b/Projects/Features/CommonFeature/Sources/Views/SongCartView.swift @@ -35,6 +35,7 @@ public class SongCartView: UIView { @IBOutlet weak var selectCountView: UIView! @IBOutlet weak var selectCountViewLeadingConstraint: NSLayoutConstraint! @IBOutlet weak var selectCountLabel: UILabel! + @IBOutlet weak var stackContentView: UIView! @IBOutlet weak var bottomSpaceView: UIView! @IBOutlet weak var bottomSpaceViewHeight: NSLayoutConstraint! @@ -199,6 +200,7 @@ public extension SongCartView { } } + stackContentView.backgroundColor = DesignSystemAsset.PrimaryColor.point.color bottomSpaceView.backgroundColor = DesignSystemAsset.PrimaryColor.point.color bottomSpaceViewHeight.constant = SAFEAREA_BOTTOM_HEIGHT() layoutIfNeeded()