Emoji picker hover fix (#25530)

This commit is contained in:
Asaad Mahmood 2023-11-26 20:26:03 +05:00 committed by GitHub
parent af7bc8a4a9
commit 37ce3e6398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -546,7 +546,8 @@ $emoji-footer-height: $emoji-footer-border-width + $emoji-half-height + $emoji-
background-color: rgba(var(--center-channel-color-rgb), 0.16); background-color: rgba(var(--center-channel-color-rgb), 0.16);
img { img {
transform: scale(1.35); -moz-transform: scale(0.45);
zoom: 0.45;
} }
} }
@ -560,7 +561,6 @@ $emoji-footer-height: $emoji-footer-border-width + $emoji-half-height + $emoji-
img { img {
position: relative; position: relative;
transform: scale(1);
transition: transform 0.2s ease-in-out; transition: transform 0.2s ease-in-out;
&.emoji-category--custom { &.emoji-category--custom {
@ -570,7 +570,6 @@ $emoji-footer-height: $emoji-footer-border-width + $emoji-half-height + $emoji-
max-width: 22px; max-width: 22px;
height: auto; height: auto;
max-height: 22px; max-height: 22px;
transform: scale(1);
} }
} }
} }