Files
homebox/frontend/components/Base/Container.vue
Webysther Sperandio d62d55a42f 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>
2025-02-12 08:42:38 -05:00

15 lines
240 B
Vue

<script lang="ts" setup>
defineProps({
cmp: {
type: String,
default: "div",
},
});
</script>
<template>
<component :is="cmp" class="container mx-auto mt-10 max-w-7xl px-3">
<slot />
</component>
</template>