footer ordering

This commit is contained in:
Kseninia Mikhaylova 2024-06-05 14:47:47 +03:00
parent a99a21227f
commit c7f8b3f66b
2 changed files with 2 additions and 2 deletions

View File

@ -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 reviews = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'clients')
const delivery = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'delivery') 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 isModalOpen = ref<boolean>(false)
const toggleModal = () => { const toggleModal = () => {

View File

@ -43,7 +43,7 @@ a[href^="/#"]:not([class*="btn"]) {
@apply col-span-5 text-sm prose; @apply col-span-5 text-sm prose;
&-small { &-small {
@apply col-span-10 col-start-3 text-xs prose; @apply col-span-10 text-xs min-w-full prose;
} }
} }
} }