diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 13:45:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 13:45:32 +0900 |
| commit | 6f724827bd5f54d2eeea222f52af8c178e1198da (patch) | |
| tree | 7b259cd35bf580e66b09c2e3dd30e20919ffe9a4 /src/client | |
| parent | :v: (diff) | |
| download | misskey-6f724827bd5f54d2eeea222f52af8c178e1198da.tar.gz misskey-6f724827bd5f54d2eeea222f52af8c178e1198da.tar.bz2 misskey-6f724827bd5f54d2eeea222f52af8c178e1198da.zip | |
:v:
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/widgets/hashtags.vue | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/client/app/common/views/widgets/hashtags.vue b/src/client/app/common/views/widgets/hashtags.vue index 9d523f321f..f6fd091b79 100644 --- a/src/client/app/common/views/widgets/hashtags.vue +++ b/src/client/app/common/views/widgets/hashtags.vue @@ -9,6 +9,7 @@ <div v-for="stat in stats" :key="stat.tag"> <div class="tag"> <router-link :to="`/tags/${ stat.tag }`">#{{ stat.tag }}</router-link> + <p>{{ '%i18n:@count%'.replace('{}', stat.usersCount) }}</p> </div> <x-chart class="chart" :src="stat.chart"/> </div> @@ -83,10 +84,16 @@ root(isDark) > .tag flex 1 + font-size 14px + color isDark ? #9baec8 : #65727b > a - font-size 14px - color isDark ? #9baec8 : #65727b + color inherit + + > p + margin 0 + font-size 75% + opacity 0.7 > .chart height 30px |