Fix covers overflow in some resolutions

This commit is contained in:
Deluan
2020-05-06 08:42:43 -04:00
parent 9d7512e9ab
commit ddcacbb6e5
2 changed files with 5 additions and 9 deletions
+2 -3
View File
@@ -50,9 +50,8 @@ const getPerPageOptions = (width) => {
const options = [3, 6, 12]
if (width === 'xs') return [12]
if (width === 'sm') return [12]
if (width === 'md') return options.map((v) => v * 5)
if (width === 'lg') return options.map((v) => v * 6)
return options.map((v) => v * 7)
if (width === 'md') return options.map((v) => v * 4)
return options.map((v) => v * 6)
}
const AlbumList = (props) => {