We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b303c4c commit cfb021bCopy full SHA for cfb021b
Packages/Features/Sources/PostUI/Row/PostRowImagesView.swift
@@ -17,11 +17,10 @@ struct PostRowImagesView: View {
17
.rotationEffect(.degrees(Double(index) * 10))
18
.offset(
19
x: 5 * CGFloat(index),
20
- y: images.images.count == 1 ? 0 : 10
+ y: images.images.count <= 2 ? 0 : 10
21
)
22
}
23
24
- .zIndex(1000)
25
} else {
26
ForEach(images.images, id: \.self.thumbnailImageURL) { image in
27
makeImageView(image: image)
0 commit comments