footer ordering
This commit is contained in:
parent
a99a21227f
commit
c7f8b3f66b
2
app.vue
2
app.vue
|
@ -58,7 +58,7 @@ const about = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'about')
|
|||
const reviews = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'clients')
|
||||
const delivery = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'delivery')
|
||||
|
||||
const { data: footerData } = await useFetch<ApiFooterType[]>(`${apiBase}/footer/`)
|
||||
const { data: footerData } = await useFetch<ApiFooterType[]>(`${apiBase}/footer/?ordering=small_text`)
|
||||
|
||||
const isModalOpen = ref<boolean>(false)
|
||||
const toggleModal = () => {
|
||||
|
|
|
@ -43,7 +43,7 @@ a[href^="/#"]:not([class*="btn"]) {
|
|||
@apply col-span-5 text-sm prose;
|
||||
|
||||
&-small {
|
||||
@apply col-span-10 col-start-3 text-xs prose;
|
||||
@apply col-span-10 text-xs min-w-full prose;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue