diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-22 17:14:23 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-22 17:14:23 +0900 |
| commit | a7977c66422f6cac078ebfc0a01507cc71f74db5 (patch) | |
| tree | 2832dc5c75f459dc4ae869cb256ea5839f511a0a | |
| parent | Update ROADMAP.md (diff) | |
| download | misskey-a7977c66422f6cac078ebfc0a01507cc71f74db5.tar.gz misskey-a7977c66422f6cac078ebfc0a01507cc71f74db5.tar.bz2 misskey-a7977c66422f6cac078ebfc0a01507cc71f74db5.zip | |
fix #10021
| -rw-r--r-- | packages/frontend/src/pages/welcome.entrance.a.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/welcome.entrance.a.vue b/packages/frontend/src/pages/welcome.entrance.a.vue index f98fdbf0ff..f62a6461c5 100644 --- a/packages/frontend/src/pages/welcome.entrance.a.vue +++ b/packages/frontend/src/pages/welcome.entrance.a.vue @@ -33,7 +33,7 @@ </div> </div> </div> - <div class="tl"> + <div v-if="instance.policies.ltlAvailable" class="tl"> <div class="title">{{ i18n.ts.letsLookAtTimeline }}</div> <div class="body"> <MkTimeline src="local"/> @@ -65,6 +65,7 @@ import MkTimeline from '@/components/MkTimeline.vue'; import { instanceName } from '@/config'; import * as os from '@/os'; import { i18n } from '@/i18n'; +import { instance } from '@/instance'; let meta = $ref<Instance>(); let instances = $ref<any[]>(); @@ -209,7 +210,6 @@ function exploreOtherServers() { border-radius: var(--radius); box-shadow: 0 12px 32px rgb(0 0 0 / 25%); text-align: center; - margin-bottom: 16px; > .icon { width: 85px; @@ -265,6 +265,7 @@ function exploreOtherServers() { border-radius: var(--radius); overflow: clip; box-shadow: 0 12px 32px rgb(0 0 0 / 25%); + margin-top: 16px; > .title { padding: 12px 16px; |