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)