Skip to content

Commit

Permalink
[Fix] #85 - 코드리뷰 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonsu0-0 committed Jan 17, 2024
1 parent d38a82c commit 70c9b8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// Created by yeonsu on 1/8/24.
//

import UIKit
import Combine
import UIKit

import SnapKit

Expand Down
12 changes: 6 additions & 6 deletions DontBe-iOS/DontBe-iOS/Presentation/Post/Views/PostView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ final class PostView: UIView {
public let postNicknameLabel: UILabel = {
let label = UILabel()
label.textColor = .donBlack
label.text = "Don't be야 사랑해~"
label.text = ""
label.font = .font(.body3)
return label
}()

let transparentLabel: UILabel = {
let label = UILabel()
label.textColor = .donGray9
label.text = "투명도 0%"
label.text = ""
label.font = .font(.caption4)
return label
}()
Expand All @@ -60,7 +60,7 @@ final class PostView: UIView {
let timeLabel: UILabel = {
let label = UILabel()
label.textColor = .donGray9
label.text = "3분 전"
label.text = ""
label.font = .font(.caption4)
return label
}()
Expand All @@ -74,7 +74,7 @@ final class PostView: UIView {
let contentTextLabel: UILabel = {
let label = UILabel()
label.textColor = .donBlack
label.text = "돈비를 사용하면 진짜 돈비를 맞을 수 있나요? 저 돈비 맞고 싶어요 돈벼락이 최고입니다.돈비를 사용하면 진짜 돈비를 맞을 수 있나요? 저 돈비 맞고 싶어요 돈벼락이 최고입니다."
label.text = ""
label.lineBreakMode = .byCharWrapping
label.font = .font(.body4)
label.numberOfLines = 0
Expand All @@ -98,7 +98,7 @@ final class PostView: UIView {
let likeNumLabel: UILabel = {
let label = UILabel()
label.textColor = .donGray11
label.text = "54"
label.text = ""
label.font = .font(.caption4)
return label
}()
Expand All @@ -121,7 +121,7 @@ final class PostView: UIView {
let commentNumLabel: UILabel = {
let label = UILabel()
label.textColor = .donGray11
label.text = "54"
label.text = ""
label.font = .font(.caption4)
return label
}()
Expand Down

0 comments on commit 70c9b8f

Please sign in to comment.