Tweak emoji size a bit...

This commit is contained in:
Sebastian Wolf 2021-01-17 11:56:56 +01:00
parent ab879f8db3
commit 9bf9a1a1eb
No known key found for this signature in database
GPG key ID: CEA9522B5F38A90A

View file

@ -51,10 +51,10 @@ function emojify(str, emojiSize) {
basePath,
iconId,
'.svg',
'" align="bottom" width="',
Math.round(emojiSize * 6 / 5 ),
'" align="middle" width="',
Math.round(emojiSize * 1.15 ),
'" height="',
Math.round(emojiSize * 6 / 5 ),
Math.round(emojiSize * 1.15 ),
'"/>'
) : rawText;
}