Fix emoji margin
This commit is contained in:
parent
14c2d76064
commit
ccb8e7f44e
@ -2645,7 +2645,10 @@ export class AppMessagesManager {
|
||||
} else if(document.type === 'round') {
|
||||
addPart('AttachRound', undefined, message.message);
|
||||
} else if(document.type === 'sticker') {
|
||||
addPart(undefined, ((plain ? document.stickerEmojiRaw : document.stickerEmoji) || ''));
|
||||
if(document.stickerEmojiRaw) {
|
||||
addPart(undefined, (plain ? document.stickerEmojiRaw : document.stickerEmoji) + ' ');
|
||||
}
|
||||
|
||||
addPart('AttachSticker');
|
||||
text = '';
|
||||
} else if(document.type === 'audio') {
|
||||
|
@ -947,10 +947,10 @@ $chat-helper-size: 36px;
|
||||
} */
|
||||
}
|
||||
|
||||
span.emoji {
|
||||
/* span.emoji {
|
||||
margin: 0 .125rem;
|
||||
// font-size: .8rem;
|
||||
}
|
||||
} */
|
||||
}
|
||||
|
||||
.new-message-wrapper {
|
||||
|
@ -450,7 +450,7 @@ $bubble-margin: .25rem;
|
||||
img.emoji {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
margin: 0 .05rem;
|
||||
// margin: 0 .05rem;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
@ -2437,8 +2437,8 @@ $bubble-margin: .25rem;
|
||||
width: .875rem;
|
||||
}
|
||||
|
||||
img.emoji {
|
||||
/* img.emoji {
|
||||
margin: 0 .125rem;
|
||||
}
|
||||
} */
|
||||
}
|
||||
}
|
||||
|
@ -133,11 +133,11 @@
|
||||
user-select: none;
|
||||
/* padding: .25rem; */
|
||||
|
||||
&.is-media {
|
||||
/* &.is-media {
|
||||
.emoji:first-child {
|
||||
margin: 0 .25rem 0 0;
|
||||
}
|
||||
}
|
||||
} */
|
||||
|
||||
&-content {
|
||||
flex-grow: 1;
|
||||
|
@ -874,7 +874,7 @@ not screen and ( min-resolution: 2dppx) {
|
||||
img.emoji {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin: 0 .125rem;
|
||||
// margin: 0 .125rem;
|
||||
|
||||
display: inline-block;
|
||||
/* width: 100%;
|
||||
|
Loading…
Reference in New Issue
Block a user