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:
commit
dc1493c0b6
3 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue