Changing emoji size

I’d like to change emoji size depending on what emoji is used, for example i’ve added “ragefaces” to the smiles database and they are displayed very small. is there any way to assign specific sizes to specific emojis?

This isn’t really in-spec for Emoji because all Emoji are by definition the same uniform size.

You might be able to do that via CSS based on the title attribute and the emoji class.

1 Like

Ta for the idea - just fixed one of ours to not be so squashed…

.emoji[title=":eek:"] {
    height: 30px;
    width: 18px;
}

(Yes - I’m aware of the spacing repercussions of that one…)

3 Likes