mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-17 00:11:05 +02:00
🎨
This commit is contained in:
parent
bbdb2496a4
commit
ec016e5a95
1 changed files with 5 additions and 1 deletions
|
@ -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 a new issue