Update responsive limit for displayed items on personalized shelves on home page

This commit is contained in:
Greg Lorenzen 2024-07-15 15:15:06 +00:00
parent 618e69775c
commit ea11153032

View File

@ -170,7 +170,7 @@ export default {
// Sets the limit for the number of items to be displayed based on the viewport width.
const viewportWidth = window.innerWidth
let limit
if (viewportWidth >= 3240 && viewportWidth <= 3440) {
if (viewportWidth >= 3240) {
limit = 15
} else if (viewportWidth >= 2880 && viewportWidth < 3240) {
limit = 12