summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-03-12 13:48:14 +0900
committerGitHub <noreply@github.com>2024-03-12 13:48:14 +0900
commitb280faa8e72c29036ef65af7fd8949538ab43dbd (patch)
tree9214090bff98b8a04817aa4fe492db4667643751
parentFix Changelog (diff)
downloadmisskey-b280faa8e72c29036ef65af7fd8949538ab43dbd.tar.gz
misskey-b280faa8e72c29036ef65af7fd8949538ab43dbd.tar.bz2
misskey-b280faa8e72c29036ef65af7fd8949538ab43dbd.zip
enhance(frontend): 各サーバーはMisskeyを利用したサービスであることを強調 (#13559)
* ロゴ周りを追加 * 調整 --------- Co-authored-by: uboar <10250330+uboar@users.noreply.github.com>
-rw-r--r--packages/frontend/src/pages/welcome.entrance.a.vue27
1 files changed, 20 insertions, 7 deletions
diff --git a/packages/frontend/src/pages/welcome.entrance.a.vue b/packages/frontend/src/pages/welcome.entrance.a.vue
index 89bb010dd6..6c05aad24f 100644
--- a/packages/frontend/src/pages/welcome.entrance.a.vue
+++ b/packages/frontend/src/pages/welcome.entrance.a.vue
@@ -9,7 +9,10 @@ SPDX-License-Identifier: AGPL-3.0-only
<XTimeline class="tl"/>
<div class="shape1"></div>
<div class="shape2"></div>
- <img :src="misskeysvg" class="misskey"/>
+ <div class="logo-wrapper">
+ <div class="powered-by">Powered by</div>
+ <img :src="misskeysvg" class="misskey"/>
+ </div>
<div class="emojis">
<MkEmoji :normal="true" :noStyle="true" emoji="👍"/>
<MkEmoji :normal="true" :noStyle="true" emoji="❤"/>
@@ -113,14 +116,24 @@ misskeyApiGet('federation/instances', {
opacity: 0.5;
}
- > .misskey {
+ > .logo-wrapper {
position: fixed;
- top: 42px;
- left: 42px;
- width: 140px;
+ top: 36px;
+ left: 36px;
+ flex: auto;
+ color: #fff;
+ user-select: none;
+ pointer-events: none;
+
+ > .powered-by {
+ margin-bottom: 2px;
+ }
- @media (max-width: 450px) {
- width: 130px;
+ > .misskey {
+ width: 140px;
+ @media (max-width: 450px) {
+ width: 130px;
+ }
}
}