1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 12:55:55 +00:00

Merge pull request #1598 from Devsencel/master

Fix for randomly oversized emojis for some users
This commit is contained in:
Mike 2024-12-30 12:18:11 -05:00 committed by GitHub
commit dc1493c0b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -22,8 +22,8 @@
}
.ffz-emoji {
width: calc(var(--ffz-chat-font-size) * 1.5);
height: calc(var(--ffz-chat-font-size) * 1.5);
width: calc(var(--ffz-chat-font-size, 1em) * 1.5);
height: calc(var(--ffz-chat-font-size, 1em) * 1.5);
&.preview-image {
width: 7.2rem;

View file

@ -1,6 +1,6 @@
.ffz--inline:not(.scaled-modified-emote) .ffz-emoji {
width: 3.6rem !important;
height: 3.6rem !important;
width: calc(var(--ffz-chat-font-size) * 3) !important;
height: calc(var(--ffz-chat-font-size) * 3) !important;
width: calc(var(--ffz-chat-font-size, 1em) * 3) !important;
height: calc(var(--ffz-chat-font-size, 1em) * 3) !important;
}

View file

@ -165,8 +165,8 @@
.ffz-notice-icon,
.ffz-emoji {
width: 1.8rem; height: 1.8rem;
width: calc(var(--ffz-chat-font-size) * 1.5);
height: calc(var(--ffz-chat-font-size) * 1.5);
width: calc(var(--ffz-chat-font-size, 1em) * 1.5);
height: calc(var(--ffz-chat-font-size, 1em) * 1.5);
}
.ffz-emoji {