ui: improve login dialog

This commit is contained in:
Anthony Fu 2022-11-30 09:45:52 +08:00
parent c9731f787d
commit afed995138
4 changed files with 41 additions and 14 deletions

View file

@ -24,10 +24,14 @@ const buildTimeAgo = useTimeAgo(buildTime)
</div>
<div>
<button cursor-pointer hover:underline @click="openPreviewHelp">
Show intro
{{ $t('nav_footer.show_intro') }}
</button>
</div>
<div>A Mastodon client made with 🧡</div>
<div>Built <time :datetime="buildTime" :title="buildTime">{{ buildTimeAgo }}</time> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
<div>{{ $t('app_desc_short') }}</div>
<div>
<i18n-t keypath="nav_footer.built_at">
<time :datetime="buildTime" :title="buildTime">{{ buildTimeAgo }}</time>
</i18n-t> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a>
</div>
</footer>
</template>