change: conthrax only for heading
This commit is contained in:
parent
8c1a01d892
commit
3d9321e7df
64 changed files with 246 additions and 6 deletions
|
@ -20,7 +20,7 @@
|
|||
</div>
|
||||
<p class="text-base text-center">@Copyright {{ new Date().getFullYear() }} {{ copyright ?? title }}</p>
|
||||
<p class="text-base text-center">Inhalte verwaltet von {{ maintained_by ?? copyright ?? title }}</p>
|
||||
<p class="text-sm text-gray-400 pt-2">
|
||||
<p class="text-sm text-gray-400 pt-2 conthrax">
|
||||
<a href="https://ff-admin.de/webpage" target="_blank">FF Webpage</a>
|
||||
entwickelt von
|
||||
<a href="https://jk-effects.com" target="_blank">JK Effects</a>
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
:key="link.id"
|
||||
:to="`/${link.URL}${link.default_active_child ? '/' + link.default_active_child : ''}`"
|
||||
:class="link.URL == params?.[0] ? 'active' : ''"
|
||||
class="conthrax"
|
||||
>
|
||||
{{ link.name }}
|
||||
</NuxtLink>
|
||||
|
@ -55,7 +56,7 @@
|
|||
:key="sublink.id"
|
||||
:to="`/${params?.[0]}/${sublink.URL}`"
|
||||
:class="sublink.URL == params?.[1] ? 'active' : ''"
|
||||
class="w-fit"
|
||||
class="w-fit conthrax"
|
||||
>
|
||||
{{ sublink.name }}
|
||||
</NuxtLink>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
:imgAttrs="{ class: 'w-full h-60 object-cover object-center' }"
|
||||
/>
|
||||
<div v-if="data?.title" primary class="h-12 min-h-12 w-full px-12 justify-center items-center gap-5 flex">
|
||||
<p>{{ data.title }}</p>
|
||||
<p class="conthrax">{{ data.title }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -23,9 +23,9 @@
|
|||
:class="data?.lookup.show_image ? 'flex-row flex-wrap justify-center' : ' flex-col'"
|
||||
>
|
||||
<div v-for="(item, index) in collection" :key="item.slug" class="contents">
|
||||
<p v-if="data?.lookup.list_with_date == 'by-month' && getDate(index) != ''" class="w-full text-center">
|
||||
<h4 v-if="data?.lookup.list_with_date == 'by-month' && getDate(index) != ''" class="w-full text-center">
|
||||
{{ getDate(index) }}
|
||||
</p>
|
||||
</h4>
|
||||
<BaseListImageItem
|
||||
v-if="data?.lookup.show_image"
|
||||
:data="item"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue