diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-20 07:19:05 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-20 07:19:05 +0900 |
| commit | 7615b1ea0a17f53008c0bc30bb52c300968cf7a8 (patch) | |
| tree | 40352370443b1c19d3788dd007844ca76f83cf42 /src | |
| parent | :art: (diff) | |
| download | misskey-7615b1ea0a17f53008c0bc30bb52c300968cf7a8.tar.gz misskey-7615b1ea0a17f53008c0bc30bb52c300968cf7a8.tar.bz2 misskey-7615b1ea0a17f53008c0bc30bb52c300968cf7a8.zip | |
Improve usability
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/pages/explore.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/app/common/views/pages/explore.vue b/src/client/app/common/views/pages/explore.vue index 796af1796b..04aa1fcbd1 100644 --- a/src/client/app/common/views/pages/explore.vue +++ b/src/client/app/common/views/pages/explore.vue @@ -3,7 +3,7 @@ <ui-container :show-header="false" v-if="meta && stats"> <div class="kpdsmpnk" :style="{ backgroundImage: meta.bannerUrl ? `url(${meta.bannerUrl})` : null }"> <div> - <b>{{ $t('explore', { host: meta.name }) }}</b> + <router-link to="/explore" class="title">{{ $t('explore', { host: meta.name }) }}</router-link> <span>{{ $t('users-info', { users: num(stats.originalUsersCount) }) }}</span> </div> </div> @@ -175,10 +175,11 @@ export default Vue.extend({ color #fff text-shadow 0 0 8px #00 - > b + > .title display block font-size 20px font-weight bold + color inherit > span font-size 14px |