diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-05 23:38:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-05 23:38:31 +0900 |
| commit | be67f5f422c2999fb430e1574de07919c193e02f (patch) | |
| tree | 9fbe8a1931b325c6b3fb44424e0c5aa85f142633 /src | |
| parent | Fix bug (diff) | |
| download | misskey-be67f5f422c2999fb430e1574de07919c193e02f.tar.gz misskey-be67f5f422c2999fb430e1574de07919c193e02f.tar.bz2 misskey-be67f5f422c2999fb430e1574de07919c193e02f.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/misskey-flavored-markdown.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/misskey-flavored-markdown.ts b/src/client/app/common/views/components/misskey-flavored-markdown.ts index 2a349c6e5f..e97da4302c 100644 --- a/src/client/app/common/views/components/misskey-flavored-markdown.ts +++ b/src/client/app/common/views/components/misskey-flavored-markdown.ts @@ -70,7 +70,7 @@ export default Vue.component('misskey-flavored-markdown', { const isMany = bigCount > 3; return (createElement as any)('strong', { attrs: { - style: `display: inline-block; font-size: ${ isMany ? '100%' : '200%' };` + style: `display: inline-block; font-size: ${ isMany ? '100%' : '150%' };` }, directives: [this.$store.state.settings.disableAnimatedMfm || isLong || isMany ? {} : { name: 'animate-css', |