From 1a01244d850a020f724f0aa074f5e280a5cdc810 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Sun, 15 Oct 2023 06:40:09 +0900 Subject: [PATCH] =?UTF-8?q?=ED=83=90=EC=83=89=20-=20=EC=9D=B8=EA=B8=B0=20?= =?UTF-8?q?=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0=20=EC=84=A4?= =?UTF-8?q?=EB=AA=85=20=EA=B8=80=20UI=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Explorer/ExplorerSectionView.swift | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Explorer/ExplorerSectionView.swift b/SodaLive/Sources/Explorer/ExplorerSectionView.swift index 8899031..5aa6855 100644 --- a/SodaLive/Sources/Explorer/ExplorerSectionView.swift +++ b/SodaLive/Sources/Explorer/ExplorerSectionView.swift @@ -46,9 +46,19 @@ struct ExplorerSectionView: View { } if let desc = section.desc { - Text(desc) - .font(.custom(Font.medium.rawValue, size: 11)) - .foregroundColor(Color(hex: "777777")) + VStack(spacing: 8) { + Text("\(desc)") + .font(.custom(Font.bold.rawValue, size: 14.7)) + .foregroundColor(Color(hex: "eeeeee")) + + Text("※ 인기 콘텐츠의 순위는 매주 업데이트됩니다.") + .font(.custom(Font.light.rawValue, size: 13.3)) + .foregroundColor(Color(hex: "bbbbbb")) + } + .padding(.vertical, 8) + .frame(width: screenSize().width - 26.7) + .background(Color(hex: "222222")) + .padding(.top, 13.3) } } .frame(width: screenSize().width - 26.7, alignment: .leading)