Skip to content

Commit

Permalink
enhance(frontend): 各サーバーはMisskeyを利用したサービスであることを強調 (#13559)
Browse files Browse the repository at this point in the history
* ロゴ周りを追加

* 調整

---------

Co-authored-by: uboar <[email protected]>
  • Loading branch information
kakkokari-gtyih and uboar authored Mar 12, 2024
1 parent e23e2f4 commit b280faa
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions packages/frontend/src/pages/welcome.entrance.a.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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="❤"/>
Expand Down Expand Up @@ -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;
}
}
}

Expand Down

0 comments on commit b280faa

Please sign in to comment.