Files
wg-easy-ca-lose/src/app/components/Form/Heading.vue
T
Bernd Storath cd9db1563d fix: mobile UI (#2569)
* improve mobile ui

* general cleanup

* cleanup, improvements

* fix hydration mismatch
2026-04-07 11:34:49 +02:00

13 lines
293 B
Vue

<template>
<h3 class="col-span-full flex items-center py-6 text-2xl">
<slot />
<BaseTooltip v-if="description" :text="description">
<IconsInfo class="size-4" />
</BaseTooltip>
</h3>
</template>
<script lang="ts" setup>
defineProps<{ description?: string }>();
</script>