feat: unify the style of under construction page (#2483)

This commit is contained in:
yrming 2023-11-28 18:54:22 +08:00 committed by GitHub
parent 7ed95e317f
commit 9c39eed209
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 57 additions and 29 deletions

View file

@ -14,14 +14,18 @@ useHydratedHead({
<MainContent back>
<template #title>
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:test-tube-line />
<span>{{ isHydrated ? $t('settings.notifications.notifications.label') : '' }}</span>
</div>
</template>
<h3 px6 py4 mt2 font-bold text-xl flex="~ gap-1" items-center>
{{ isHydrated ? $t('settings.notifications.notifications.label') : '' }}
</h3>
<p text-4xl text-center>
<span sr-only>{{ isHydrated ? $t('settings.notifications.under_construction') : '' }}</span> 🚧
</p>
<div text-center mt-10>
<h1 text-4xl>
<span sr-only>{{ isHydrated ? $t('settings.notifications.under_construction') : '' }}</span>
🚧
</h1>
<h3 text-xl>
{{ isHydrated ? $t('settings.notifications.notifications.label') : '' }}
</h3>
</div>
</MainContent>
</template>