From 04fe416f7c4fd296de2be002303fb2b696b927a1 Mon Sep 17 00:00:00 2001 From: nicwands Date: Tue, 16 Jun 2026 14:17:24 -0400 Subject: [PATCH] content sizing --- src/components/Layout.vue | 8 +++++++- src/components/MosaicModal.vue | 6 +++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/Layout.vue b/src/components/Layout.vue index 1ddf3c8..5047f2d 100644 --- a/src/components/Layout.vue +++ b/src/components/Layout.vue @@ -7,7 +7,11 @@ - + + + + + @@ -16,8 +20,10 @@ import { computed } from 'vue'; import { useSeoMeta } from '@unhead/vue' import { useStrapiGlobal } from '@/composables/useStrapi' +import { useRoute } from 'vue-router'; const { data: global } = await useStrapiGlobal() +const route = useRoute() const headerCopy = computed(() => global.value?.header_copy) const headerDl = computed(() => global.value?.header_dl) diff --git a/src/components/MosaicModal.vue b/src/components/MosaicModal.vue index 5192cfc..ac0f10d 100644 --- a/src/components/MosaicModal.vue +++ b/src/components/MosaicModal.vue @@ -8,7 +8,7 @@
- +
@@ -87,6 +87,10 @@ const onClose = () => router.push('/') border-radius: desktop-vw(4px); overflow: hidden; } + .strapi-content { + max-width: columns(6); + margin: auto; + } } &.close { padding: desktop-vw(9px);