feat: 고객센터 상단 로고 변경

This commit is contained in:
Yu Sung
2025-07-28 19:05:12 +09:00
parent 7f625c0a9d
commit b20a6cb0f6
3 changed files with 25 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ struct ServiceCenterView: View {
ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 0) {
Image("ic_logo")
Image("ic_logo_service_center")
.resizable()
.scaledToFill()
.frame(width: 106.7, height: 106.7, alignment: .top)
@@ -26,6 +26,7 @@ struct ServiceCenterView: View {
Text("고객센터")
.font(.custom(Font.bold.rawValue, size: 20))
.foregroundColor(.grayee)
.padding(.top, 20)
HStack(spacing: 13.3) {
Image("ic_service_center_kakao")
@@ -38,9 +39,10 @@ struct ServiceCenterView: View {
.foregroundColor(.black)
}
.padding(.vertical, 14)
.frame(width: screenSize().width - 26.7)
.frame(maxWidth: .infinity)
.background(Color(hex: "ffe368"))
.cornerRadius(8)
.padding(.horizontal, 13.3)
.padding(.top, 20)
.onTapGesture {
UIApplication.shared.open(URL(string: "http://pf.kakao.com/_lkxgxhG/chat")!)