캔 유효기간 설명 제거

This commit is contained in:
Yu Sung 2023-09-18 10:46:31 +09:00
parent d3c5a5bfb9
commit b632a65a6f
1 changed files with 1 additions and 13 deletions

View File

@ -74,19 +74,6 @@ struct CanPaymentView: View {
}
VStack(spacing: 6.7) {
HStack(alignment: .top, spacing: 0) {
Text("- ")
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color(hex: "777777"))
Text("충전된 캔의 유효기간은 충전 후 5년 입니다.")
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color(hex: "777777"))
.fixedSize(horizontal: false, vertical: true)
}
.frame(width: screenSize().width - 53.4, alignment: .leading)
.padding(.top, 26.7)
HStack(alignment: .top, spacing: 0) {
Text("- ")
.font(.custom(Font.medium.rawValue, size: 12))
@ -123,6 +110,7 @@ struct CanPaymentView: View {
}
.frame(width: screenSize().width - 53.4, alignment: .leading)
}
.padding(.top, 26.7)
}
}