diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-10-27 18:28:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-10-27 18:28:37 +0900 |
| commit | 63a89fa84a4ee638dd1f74357fcaf65ca8c64620 (patch) | |
| tree | 6ba49cec6e97ba6f0e4c1db14049b3726e106074 /src/client/components | |
| parent | New Crowdin updates (#6760) (diff) | |
| download | sharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.tar.gz sharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.tar.bz2 sharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.zip | |
カスタム絵文字がつぶれる問題を修正
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/emoji.vue | 1 | ||||
| -rw-r--r-- | src/client/components/reactions-viewer.details.vue | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/client/components/emoji.vue b/src/client/components/emoji.vue index ba65ada8ac..458b0a7fab 100644 --- a/src/client/components/emoji.vue +++ b/src/client/components/emoji.vue @@ -9,7 +9,6 @@ import { defineComponent } from 'vue'; import { getStaticImageUrl } from '@/scripts/get-static-image-url'; import { twemojiSvgBase } from '../../misc/twemoji-base'; -import * as os from '@/os'; export default defineComponent({ props: { diff --git a/src/client/components/reactions-viewer.details.vue b/src/client/components/reactions-viewer.details.vue index e6d541e7f0..6e7da58e20 100644 --- a/src/client/components/reactions-viewer.details.vue +++ b/src/client/components/reactions-viewer.details.vue @@ -3,7 +3,7 @@ <div class="bqxuuuey"> <div class="info"> <div>{{ reaction.replace('@.', '') }}</div> - <XReactionIcon :reaction="reaction" :custom-emojis="emojis" class="icon"/> + <XReactionIcon :reaction="reaction" :custom-emojis="emojis" class="icon" :no-style="true"/> </div> <template v-if="users.length <= 10"> <b v-for="u in users" :key="u.id" style="margin-right: 12px;"> @@ -66,7 +66,6 @@ export default defineComponent({ > .icon { display: block; width: 60px; - height: 60px; margin: 0 auto; } } |