From 91cd3fe99551ae8ff01734b96912523dc7038aec Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 27 Sep 2023 18:13:15 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=97=85?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20-=20=EB=AF=B8=EB=A6=AC=EB=93=A3=EA=B8=B0?= =?UTF-8?q?=20=EC=8B=9C=EA=B0=84=20=EC=84=A4=EC=A0=95=20=EC=95=88=EB=82=B4?= =?UTF-8?q?=20=EB=AC=B8=EA=B5=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Content/Create/ContentCreateView.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SodaLive/Sources/Content/Create/ContentCreateView.swift b/SodaLive/Sources/Content/Create/ContentCreateView.swift index f201e67..04d7f07 100644 --- a/SodaLive/Sources/Content/Create/ContentCreateView.swift +++ b/SodaLive/Sources/Content/Create/ContentCreateView.swift @@ -321,12 +321,17 @@ struct ContentCreateView: View { .padding(.top, 26.7) .padding(.horizontal, 13.3) - VStack(spacing: 13.3) { + VStack(spacing: 10) { Text("미리듣기 시간 설정") .font(.custom(Font.bold.rawValue, size: 16.7)) .foregroundColor(Color(hex: "eeeeee")) .frame(maxWidth: .infinity, alignment: .leading) + Text("미리듣기 시간을 직접 설정하지 않으면 콘텐츠 앞부분 30초가 자동으로 설정됩니다. 미리듣기의 시간제한은 없습니다.") + .font(.custom(Font.medium.rawValue, size: 13.3)) + .foregroundColor(Color(hex: "777777")) + .frame(maxWidth: .infinity, alignment: .leading) + HStack(spacing: 13.3) { VStack(spacing: 5.3) { Text("시작 시간") @@ -366,6 +371,7 @@ struct ContentCreateView: View { .multilineTextAlignment(.center) } } + .padding(.top, 3.3) } .padding(.top, 26.7) .padding(.horizontal, 13.3)