1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-10-03 01:09:57 +01:00
elk/pages/settings/interface/index.vue

24 lines
585 B
Vue
Raw Normal View History

2023-01-04 13:57:12 +00:00
<script setup lang="ts">
const { t } = useI18n()
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>
<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>
<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>