Fix screen large items (#472)

* Update Container.vue to allow max 7 for xl

* Update items.vue to allow 5 cols to large screen

* Change to use pageSize to 30

Least common multiple is 30 for cols if 2, 3 or 5.

---------

Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com>
This commit is contained in:
Webysther Sperandio
2025-02-12 14:42:38 +01:00
committed by GitHub
parent 81d3ddc362
commit d62d55a42f
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
</script>
<template>
<component :is="cmp" class="container mx-auto mt-10 max-w-6xl px-3">
<component :is="cmp" class="container mx-auto mt-10 max-w-7xl px-3">
<slot />
</component>
</template>