Replace twemoji files with twemoji npm package

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2021-06-05 23:37:02 +02:00
parent 154cb4c739
commit 8b78154075
11 changed files with 12 additions and 19 deletions

View file

@ -36,7 +36,7 @@ export const emojiPickerConfig = {
const twemojiStyle = (): HTMLStyleElement => {
const style = document.createElement('style')
style.textContent = 'section.picker { --font-family: "Twemoji Mozilla" !important; }'
style.textContent = 'section.picker { --font-family: "Twemoji" !important; }'
return style
}