mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-03 13:44:36 -04:00
Update responsive limit for displayed items on personalized shelves on home page
This commit is contained in:
parent
618e69775c
commit
ea11153032
@ -170,7 +170,7 @@ export default {
|
|||||||
// Sets the limit for the number of items to be displayed based on the viewport width.
|
// Sets the limit for the number of items to be displayed based on the viewport width.
|
||||||
const viewportWidth = window.innerWidth
|
const viewportWidth = window.innerWidth
|
||||||
let limit
|
let limit
|
||||||
if (viewportWidth >= 3240 && viewportWidth <= 3440) {
|
if (viewportWidth >= 3240) {
|
||||||
limit = 15
|
limit = 15
|
||||||
} else if (viewportWidth >= 2880 && viewportWidth < 3240) {
|
} else if (viewportWidth >= 2880 && viewportWidth < 3240) {
|
||||||
limit = 12
|
limit = 12
|
||||||
|
Loading…
x
Reference in New Issue
Block a user