Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature/#349] 보틀 보관함 디자인 qa 반영 #350

Merged
Prev Previous commit
Next Next commit
feat: 매칭 실패 image padding 수정
  • Loading branch information
leemhyungyu committed Nov 7, 2024
commit 6e704bbbdceabfb7ac2a293ed5df8a2d248ea703
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public struct MatchingView: View {
bottomButton
.padding(.horizontal, .md)
.padding(.bottom, 30)
.shadow(color: .white, radius: 15, y: -30)
}
.background(to: ColorToken.background(.primary))
}
Expand Down Expand Up @@ -76,7 +77,7 @@ private extension MatchingView {
case .waitingOtherAnswer:
GeometryReader { geometryProxy in
WithPerceptionTracking {
let width = geometryProxy.size.width - 60.0
let width = geometryProxy.size.width - 120.0
HStack(spacing: 0 ) {
Spacer()
BottleImageView(
Expand All @@ -97,7 +98,7 @@ private extension MatchingView {
case .matchFailed:
GeometryReader { geometryProxy in
WithPerceptionTracking {
let width = geometryProxy.size.width - 50
let width = geometryProxy.size.width - 120.0
HStack(spacing: 0 ) {
Spacer()
BottleImageView(
Expand Down