This commit is contained in:
parent
bbdb2496a4
commit
ec016e5a95
|
@ -98,7 +98,11 @@ export default Vue.component('misskey-flavored-markdown', {
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'small': {
|
case 'small': {
|
||||||
return [createElement('small', genEl(token.children))];
|
return [createElement('small', {
|
||||||
|
attrs: {
|
||||||
|
style: 'opacity: 0.7;'
|
||||||
|
},
|
||||||
|
}, genEl(token.children))];
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'center': {
|
case 'center': {
|
||||||
|
|
Loading…
Reference in New Issue