2023-01-04 14:57:12 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2023-04-16 21:33:51 +02:00
|
|
|
useHydratedHead({
|
2023-01-04 14:57:12 +01:00
|
|
|
title: () => `${t('settings.interface.label')} | ${t('nav.settings')}`,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 00:04:24 +01:00
|
|
|
<template>
|
2022-12-28 02:12:56 +01:00
|
|
|
<MainContent back-on-small-screen>
|
2022-12-27 00:04:24 +01:00
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
|
|
<span>{{ $t('settings.interface.label') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
2024-04-14 20:06:25 +02:00
|
|
|
<div px-6 pt-3 pb-6 flex="~ col gap6">
|
|
|
|
<SettingsFontSize />
|
|
|
|
<SettingsColorMode />
|
|
|
|
<SettingsThemeColors />
|
|
|
|
<SettingsBottomNav />
|
2022-12-27 00:04:24 +01:00
|
|
|
</div>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|