change: conthrax only for heading

This commit is contained in:
Julian Krauser 2025-07-26 13:11:53 +02:00
parent 8c1a01d892
commit 3d9321e7df
64 changed files with 246 additions and 6 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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"