diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-10 17:48:07 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-10 17:48:07 +0900 |
| commit | 94bf7101f87591d7a961570c02638b550f89d49d (patch) | |
| tree | 68c8c4d7245c055e270e9f006fce0db4a93860d8 /src | |
| parent | fix(client): ピン留めユーザーの設定項目がない問題を修正 (diff) | |
| download | misskey-94bf7101f87591d7a961570c02638b550f89d49d.tar.gz misskey-94bf7101f87591d7a961570c02638b550f89d49d.tar.bz2 misskey-94bf7101f87591d7a961570c02638b550f89d49d.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/pages/instance/index.vue | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/client/pages/instance/index.vue b/src/client/pages/instance/index.vue index e2cb5b8f58..7b07bf2dde 100644 --- a/src/client/pages/instance/index.vue +++ b/src/client/pages/instance/index.vue @@ -2,13 +2,14 @@ <div class="hiyeyicy" :class="{ wide: !narrow }" ref="el"> <div class="nav" v-if="!narrow || page == null"> <MkHeader :info="header"></MkHeader> - - <MkInfo v-if="noMaintainerInformation" warn class="info">{{ $ts.noMaintainerInformationWarning }} <MkA to="/instance/settings" class="_link">{{ $ts.configure }}</MkA></MkInfo> - <MkInfo v-if="noBotProtection" warn class="info">{{ $ts.noBotProtectionWarning }} <MkA to="/instance/bot-protection" class="_link">{{ $ts.configure }}</MkA></MkInfo> <div class="lxpfedzu"> <img :src="$instance.iconUrl || '/favicon.ico'" alt="" class="icon"/> </div> + + <MkInfo v-if="noMaintainerInformation" warn class="info">{{ $ts.noMaintainerInformationWarning }} <MkA to="/instance/settings" class="_link">{{ $ts.configure }}</MkA></MkInfo> + <MkInfo v-if="noBotProtection" warn class="info">{{ $ts.noBotProtectionWarning }} <MkA to="/instance/bot-protection" class="_link">{{ $ts.configure }}</MkA></MkInfo> + <MkSuperMenu :def="menuDef" :grid="page == null"></MkSuperMenu> </div> <div class="main"> @@ -360,7 +361,7 @@ export default defineComponent({ } .lxpfedzu { - padding: 16px; + margin: 16px; > .icon { display: block; |