UX: Larger images in mobile emoji picker (#17013)

This commit is contained in:
Penar Musaraj 2022-06-07 16:00:09 +00:00 committed by GitHub
parent 5238f6788c
commit 4be67ef9a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -43,7 +43,7 @@ sup img.emoji {
img.emoji {
// custom emojis might import images of various sizes
// we don't want the picker to be difformed
// we don't want them to be deformed in the picker
width: 20px !important;
height: 20px !important;
}

View File

@ -6,4 +6,13 @@
top: 0;
left: 0;
border-bottom: 1px solid var(--primary-low);
min-height: 50vh;
.emoji-picker-emoji-area {
img.emoji {
// custom emojis might import images of various sizes
// we don't want them to be deformed in the picker
width: 28px !important;
height: 28px !important;
}
}
}