style items start
This commit is contained in:
parent
bd44dd723b
commit
3b4abaa8b5
|
@ -96,6 +96,11 @@ a[href^="#"] {
|
|||
@apply relative h-[50vh] min-h-[600px];
|
||||
}
|
||||
}
|
||||
&_content {
|
||||
> .container {
|
||||
@apply items-start;
|
||||
}
|
||||
}
|
||||
|
||||
&-content {
|
||||
@apply col-span-full xl:col-span-8 h-full flex flex-col justify-between min-w-full prose;
|
||||
|
|
|
@ -16,7 +16,6 @@ useSeoMeta({
|
|||
ogImage: config.public.baseUrl + og_img,
|
||||
// twitterCard: 'summary_large_image',
|
||||
})
|
||||
|
||||
const { data: pagesData } = await useFetch<ApiPagesType[]>(`${apiBase}/pages/?ordering=order`)
|
||||
|
||||
const { data: reviewsData } = await useFetch<ApiReviewsType[]>(`${apiBase}/review/`)
|
||||
|
@ -109,7 +108,7 @@ const { data: advData } = await useFetch<ApiAdvantageType[]>(`${apiBase}/advanta
|
|||
<LazyCalcModels />
|
||||
</Suspense>
|
||||
</div>
|
||||
<div class="siteblock bg-white" :id="delivery?.slug" v-if="deliveryText">
|
||||
<div class="siteblock bg-white siteblock_content" :id="delivery?.slug" v-if="deliveryText">
|
||||
<div class="container">
|
||||
<div class="prose col-span-12 xl:col-span-6">
|
||||
<span v-html="deliveryText[0]"></span>
|
||||
|
|
Loading…
Reference in New Issue