yunohost-portal/app.vue

42 lines
649 B
Vue
Raw Normal View History

2023-08-05 15:06:40 +02:00
<script setup lang="ts">
const head = useLocaleHead({
addDirAttribute: true,
addSeoAttributes: true,
})
const settings = await useSettings()
useHead({
titleTemplate: (titleChunk) => {
const baseTitle = settings.value.portal_title
return titleChunk ? `${titleChunk} - ${baseTitle}` : baseTitle
},
})
2023-08-05 15:06:40 +02:00
</script>
<template>
<NuxtLayout>
<Html :lang="head.htmlAttrs?.lang" :dir="head.htmlAttrs?.dir" />
<NuxtPage />
</NuxtLayout>
</template>
<style>
body {
font-family: 'Source Sans 3';
}
#__nuxt {
@apply min-h-screen flex;
}
/* GLOBAL */
.btn,
.select,
.input {
min-height: 2.5rem;
height: 2.5rem;
}
2023-08-05 15:06:40 +02:00
</style>