Move back to book style images

This commit is contained in:
Jackson Harper 2023-09-12 14:18:09 +08:00
parent f2b378181d
commit fe8e10a9cf
2 changed files with 3 additions and 4 deletions

View file

@ -770,7 +770,6 @@ struct AnimatingCellHeight: AnimatableModifier {
Spacer()
}
.frame(maxHeight: .infinity)
}
}

View file

@ -157,12 +157,12 @@ public struct LibraryItemCard: View {
image
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 50, height: 50)
.frame(width: 50, height: 75)
.cornerRadius(5)
.padding(.top, 2)
} else {
Color.systemBackground
.frame(width: 50, height: 50)
.frame(width: 50, height: 75)
.cornerRadius(5)
.padding(.top, 2)
}
@ -171,7 +171,7 @@ public struct LibraryItemCard: View {
fallbackImage
}
}
.padding(.top, 15)
.padding(.top, 10)
.cornerRadius(5)
}