fix: 콘텐츠 수정 - 토스트, 수정 버튼 배경색 수정

This commit is contained in:
Yu Sung
2025-06-04 16:38:44 +09:00
parent 7aa040c492
commit 677e8cac0a

View File

@@ -66,7 +66,7 @@ struct ContentModifyView: View {
Image("ic_camera")
.padding(10)
.background(Color(hex: "9970ff"))
.background(Color.button)
.cornerRadius(30)
.offset(x: 50, y: 36)
}
@@ -189,12 +189,12 @@ struct ContentModifyView: View {
VStack(spacing: 0) {
HStack(alignment: .top, spacing: 0) {
Text("등록")
Text("수정")
.font(.custom(Font.bold.rawValue, size: 18.3))
.foregroundColor(Color.white)
.frame(height: 50)
.frame(maxWidth: .infinity)
.background(Color(hex: "9970ff"))
.background(Color.button)
.cornerRadius(10)
.padding(13.3)
}
@@ -244,7 +244,7 @@ struct ContentModifyView: View {
.padding(.vertical, 13.3)
.frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.background(Color(hex: "9970ff"))
.background(Color.button)
.foregroundColor(Color.white)
.multilineTextAlignment(.center)
.cornerRadius(20)