forked from mirrors/homebox
79f7ad40cb
* add user profiles and theme selectors * lowercase buttons by default * basic layout * (wip) init token APIs * refactor server to support variable options * fix types * api refactor / registration tests * implement UI for url and join * remove console.logs * rename repository factory * fix upload size
28 lines
549 B
Vue
28 lines
549 B
Vue
<template>
|
|
<div class="pb-3">
|
|
<h3
|
|
class="text-3xl font-bold tracking-tight"
|
|
:class="{
|
|
'text-neutral-content': dark,
|
|
'text-content': !dark,
|
|
}"
|
|
>
|
|
<slot />
|
|
</h3>
|
|
<p v-if="$slots.description" class="mt-2 max-w-4xl text-sm text-base-content">
|
|
<slot name="description" />
|
|
</p>
|
|
<div v-if="$slots.after">
|
|
<slot name="after" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps({
|
|
dark: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
</script>
|