Skip to content

Commit f71a02d

Browse files
committed
[Fix] StampView Animation 픽셀 수정
1 parent 3d13b5b commit f71a02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AsyncSwift/Observed/StampView+Observed.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ extension StampView {
127127
} else if size.height - CGFloat(94) < cardSize + CGFloat(16) + cardInterval * CGFloat(cards.count - 1) {
128128
return cardSize + CGFloat(16) + card.originalPosition
129129
} else {
130-
return size.height - CGFloat(94) - cardInterval * CGFloat(cards.count - index) - CGFloat(16)
130+
return size.height - CGFloat(94) - cardInterval * CGFloat(cards.count - index) - CGFloat(8)
131131
}
132132
}
133133
}

0 commit comments

Comments
 (0)