feat(profile): 크리에이터 상세정보에서 닉네임의 크기 32, SNS 아이콘 margin 16

This commit is contained in:
Yu Sung
2026-02-25 21:33:58 +09:00
parent 32d1d970e4
commit c7ec9045ff

View File

@@ -80,7 +80,7 @@ struct CreatorDetailDialogView: View {
.cornerRadius(16) .cornerRadius(16)
Text(creatorDetail.nickname) Text(creatorDetail.nickname)
.appFont(size: 36, weight: .bold) .appFont(size: 32, weight: .bold)
.foregroundColor(.white) .foregroundColor(.white)
.padding(.top, 24) .padding(.top, 24)
@@ -145,7 +145,7 @@ struct CreatorDetailDialogView: View {
@ViewBuilder @ViewBuilder
private func snsSection(items: [CreatorDetailSnsItem]) -> some View { private func snsSection(items: [CreatorDetailSnsItem]) -> some View {
VStack(alignment: .leading, spacing: 8) { VStack(alignment: .leading, spacing: 16) {
Text(I18n.MemberChannel.creatorDetailSns) Text(I18n.MemberChannel.creatorDetailSns)
.appFont(size: 16, weight: .medium) .appFont(size: 16, weight: .medium)
.foregroundColor(Color(hex: "B0BEC5")) .foregroundColor(Color(hex: "B0BEC5"))