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

@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "ic_logo_service_center.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

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