Skip to content

Commit d8317fd

Browse files
authored
Merge pull request #154 from Team-Clody/fix/#153-designQA
Fix [#153] Design QA 일부 반영
2 parents 757cf6d + 6b616a7 commit d8317fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Clody_iOS/Clody_iOS.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@
14851485
CODE_SIGN_ENTITLEMENTS = Clody_iOS/Clody_iOS.entitlements;
14861486
CODE_SIGN_IDENTITY = "Apple Development";
14871487
CODE_SIGN_STYLE = Automatic;
1488-
CURRENT_PROJECT_VERSION = 2;
1488+
CURRENT_PROJECT_VERSION = 5;
14891489
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
14901490
"DEBUG_INFORMATION_FORMAT[sdk=*]" = "dwarf-with-dsym";
14911491
GENERATE_INFOPLIST_FILE = YES;
@@ -1523,7 +1523,7 @@
15231523
CODE_SIGN_ENTITLEMENTS = Clody_iOS/Clody_iOS.entitlements;
15241524
CODE_SIGN_IDENTITY = "Apple Development";
15251525
CODE_SIGN_STYLE = Automatic;
1526-
CURRENT_PROJECT_VERSION = 2;
1526+
CURRENT_PROJECT_VERSION = 5;
15271527
GENERATE_INFOPLIST_FILE = YES;
15281528
INFOPLIST_FILE = Clody_iOS/Info.plist;
15291529
INFOPLIST_KEY_CFBundleDisplayName = Clody;

Clody_iOS/Clody_iOS/Localizable.xcstrings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
"en" : {
263263
"stringUnit" : {
264264
"state" : "translated",
265-
"value" : "sent journals can’t be edited."
265+
"value" : "Sent journals can’t be edited."
266266
}
267267
},
268268
"ko" : {

Clody_iOS/Clody_iOS/Presentation/Calendar/Views/CalendarView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ final class CalendarView: BaseView {
204204

205205
kebabButton.snp.makeConstraints {
206206
$0.centerY.equalTo(dateLabel)
207-
$0.trailing.equalTo(mainCalendarView)
207+
$0.trailing.equalTo(mainCalendarView).offset(ScreenUtils.getWidth(12))
208208
}
209209

210210
dailyDiaryCollectionView.snp.makeConstraints {
@@ -221,7 +221,7 @@ final class CalendarView: BaseView {
221221

222222
emptyDiaryLabel.snp.makeConstraints {
223223
$0.centerX.equalToSuperview()
224-
$0.centerY.equalToSuperview()
224+
$0.top.equalToSuperview().inset(ScreenUtils.getHeight(51))
225225
}
226226
}
227227

Clody_iOS/Clody_iOS/Presentation/List/Views/ListEmptyView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class ListEmptyView: BaseView {
2323
$0.textColor = .grey06
2424
$0.attributedText = UIFont.pretendardString(
2525
text: .List.emptyList,
26-
style: .body2_semibold,
26+
style: .body3_regular,
2727
applyLineHeight: true
2828
)
2929
$0.numberOfLines = 0

0 commit comments

Comments
 (0)