summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-10-27 18:28:37 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-10-27 18:28:37 +0900
commit63a89fa84a4ee638dd1f74357fcaf65ca8c64620 (patch)
tree6ba49cec6e97ba6f0e4c1db14049b3726e106074 /src
parentNew Crowdin updates (#6760) (diff)
downloadsharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.tar.gz
sharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.tar.bz2
sharkey-63a89fa84a4ee638dd1f74357fcaf65ca8c64620.zip
カスタム絵文字がつぶれる問題を修正
Diffstat (limited to 'src')
-rw-r--r--src/client/components/emoji.vue1
-rw-r--r--src/client/components/reactions-viewer.details.vue3
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;
}
}