This commit is contained in:
syuilo 2019-01-31 12:24:21 +09:00
parent bbdb2496a4
commit ec016e5a95
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -98,7 +98,11 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'small': {
return [createElement('small', genEl(token.children))];
return [createElement('small', {
attrs: {
style: 'opacity: 0.7;'
},
}, genEl(token.children))];
}
case 'center': {