Skip to content

Commit

Permalink
Add padding to library item on both iOS and iPadOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Oct 30, 2023
1 parent 817a0c3 commit 202ebbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Swiftfin/Components/PagingLibraryView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct PagingLibraryView: View {
if libraryGridPosterType == .landscape && UIDevice.isPhone {
return .fixedNumberOfColumns(2)
} else {
return .adaptive(withMinItemSize: libraryGridPosterType.width + (UIDevice.isIPad ? 10 : 0))
return .adaptive(withMinItemSize: libraryGridPosterType.width + 10)
}
}

Expand Down

0 comments on commit 202ebbc

Please sign in to comment.