From bb85658cb0d75dbe3022f0f58231175ef1baead9 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 3 Oct 2024 01:21:22 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0?= =?UTF-8?q?=20=EC=B1=84=EB=84=90=20-=20=EC=BD=98=ED=85=90=EC=B8=A0=20-=20?= =?UTF-8?q?=EA=B0=84=EA=B2=A9,=20=EC=BB=AC=EB=9F=AC=20=ED=91=9C=EC=8B=9C?= =?UTF-8?q?=EB=B0=A9=EC=8B=9D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Explorer/Profile/UserProfileContentView.swift | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileContentView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileContentView.swift index fede761..2145799 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileContentView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileContentView.swift @@ -13,17 +13,17 @@ struct UserProfileContentView: View { let items: [GetAudioContentListItem] var body: some View { - VStack(spacing: 0) { + VStack(spacing: 21) { HStack(spacing: 0) { Text(userId == UserDefaults.int(forKey: .userId) ? "내 콘텐츠" : "콘텐츠") .font(.custom(Font.bold.rawValue, size: 18.3)) - .foregroundColor(Color(hex: "eeeeee")) + .foregroundColor(Color.grayee) Spacer() Text("전체보기") .font(.custom(Font.medium.rawValue, size: 12)) - .foregroundColor(Color(hex: "bbbbbb")) + .foregroundColor(Color.graybb) .onTapGesture { AppState.shared.setAppStep(step: .contentListAll(userId: userId)) } @@ -32,12 +32,11 @@ struct UserProfileContentView: View { if userId == UserDefaults.int(forKey: .userId) { Text("새로운 콘텐츠 등록하기") .font(.custom(Font.bold.rawValue, size: 15)) - .foregroundColor(Color(hex: "eeeeee")) + .foregroundColor(Color.grayee) .padding(.vertical, 17) .frame(maxWidth: .infinity) - .background(Color(hex: "3bb9f1")) + .background(Color.button) .cornerRadius(5.3) - .padding(.top, 21) .onTapGesture { AppState.shared.setAppStep(step: .createContent) } } @@ -55,7 +54,6 @@ struct UserProfileContentView: View { } } } - .padding(.top, 21) } } }