Skip to content

Commit

Permalink
⚡ :: 간격 조절 및 border 색깔 opacitiy 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yongbeomkwak committed Aug 30, 2024
1 parent 5268085 commit 9411970
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Projects/Features/BaseFeature/Resources/Base.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
</constraints>
</view>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="6pV-f7-nxC">
<rect key="frame" x="0.0" y="123" width="393" height="729"/>
<rect key="frame" x="0.0" y="107" width="393" height="745"/>
<color key="backgroundColor" name="gray100"/>
<prototypes>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="CurrentPlaylistTableViewCell" rowHeight="60" id="PfK-35-YMP" customClass="CurrentPlaylistTableViewCell" customModule="BaseFeature">
Expand Down Expand Up @@ -247,7 +247,7 @@
<constraint firstAttribute="bottom" secondItem="6pV-f7-nxC" secondAttribute="bottom" id="Qbj-D5-NOD"/>
<constraint firstItem="V2Y-fc-egg" firstAttribute="centerX" secondItem="tNr-su-wp3" secondAttribute="centerX" id="U3W-E0-KdH"/>
<constraint firstItem="6pV-f7-nxC" firstAttribute="leading" secondItem="Kfn-Yf-bFq" secondAttribute="leading" id="U3X-oS-uhs"/>
<constraint firstItem="6pV-f7-nxC" firstAttribute="top" secondItem="uvF-5l-2QF" secondAttribute="bottom" constant="16" id="UWZ-gz-9mC"/>
<constraint firstItem="6pV-f7-nxC" firstAttribute="top" secondItem="uvF-5l-2QF" secondAttribute="bottom" id="UWZ-gz-9mC"/>
<constraint firstItem="uvF-5l-2QF" firstAttribute="top" secondItem="Kfn-Yf-bFq" secondAttribute="top" id="VCZ-Wj-phy"/>
<constraint firstItem="Kfn-Yf-bFq" firstAttribute="trailing" secondItem="6pV-f7-nxC" secondAttribute="trailing" id="qwZ-Xk-Ld2"/>
<constraint firstItem="V2Y-fc-egg" firstAttribute="centerY" secondItem="tNr-su-wp3" secondAttribute="centerY" id="uch-vR-wTA"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public final class ContainSongsViewController: BaseViewController, ViewControlle
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var indicator: NVActivityIndicatorView!
let containerView = UIView(frame: CGRect(x: .zero, y: .zero, width: APP_WIDTH(), height: 36))
let containerView = UIView(frame: CGRect(x: .zero, y: .zero, width: APP_WIDTH(), height: 48))
let songCountLabel: UILabel = UILabel()
let subTitleLabel: UILabel = UILabel()
var multiPurposePopupFactory: MultiPurposePopupFactory!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ContainPlaylistHeaderView: UIView {
self.backgroundColor = .clear
superView.backgroundColor = .white.withAlphaComponent(0.4)
superView.layer.cornerRadius = 8
superView.layer.borderColor = DesignSystemAsset.BlueGrayColor.gray200.color.withAlphaComponent(0.7).cgColor
superView.layer.borderColor = DesignSystemAsset.BlueGrayColor.gray200.color.withAlphaComponent(0.4).cgColor
superView.layer.borderWidth = 1

blurEffectViews.layer.cornerRadius = 8
Expand Down

0 comments on commit 9411970

Please sign in to comment.