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>
|
2022-12-27 23:03:50 +00:00
|
|
|
<div p6 flex="~ col gap6">
|
|
|
|
<label space-y-2>
|
|
|
|
<p font-medium>{{ $t('settings.interface.font_size') }}</p>
|
|
|
|
<SettingsFontSize select-settings />
|
|
|
|
</label>
|
|
|
|
<label space-y-2>
|
|
|
|
<p font-medium>{{ $t('settings.interface.color_mode') }}</p>
|
|
|
|
<SettingsColorMode />
|
|
|
|
</label>
|
2022-12-26 23:04:24 +00:00
|
|
|
</div>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|