mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
25 lines
360 B
Vue
25 lines
360 B
Vue
|
<script setup lang="ts">
|
||
|
const head = useLocaleHead({
|
||
|
addDirAttribute: true,
|
||
|
addSeoAttributes: true,
|
||
|
})
|
||
|
</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;
|
||
|
}
|
||
|
</style>
|