2023-01-04 13:57:12 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2023-04-16 20:33:51 +01:00
|
|
|
useHydratedHead({
|
2023-01-04 13:57:12 +00:00
|
|
|
title: () => `${t('settings.interface.label')} | ${t('nav.settings')}`,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2022-12-26 23:04:24 +00:00
|
|
|
<template>
|
2022-12-28 01:12:56 +00:00
|
|
|
<MainContent back-on-small-screen>
|
2022-12-26 23:04:24 +00: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 19:06:25 +01:00
|
|
|
<div px-6 pt-3 pb-6 flex="~ col gap6">
|
|
|
|
<SettingsFontSize />
|
|
|
|
<SettingsColorMode />
|
|
|
|
<SettingsThemeColors />
|
|
|
|
<SettingsBottomNav />
|
2022-12-26 23:04:24 +00:00
|
|
|
</div>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|