1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 12:45:38 +02:00
This commit is contained in:
syuilo
2019-01-31 12:24:21 +09:00
parent bbdb2496a4
commit ec016e5a95

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': {