Fix delivery status overflow in sticker messages
This commit is contained in:
parent
f157ce2eec
commit
79acb7513d
2 changed files with 8 additions and 1 deletions
|
@ -378,7 +378,11 @@
|
||||||
@include dark-theme {
|
@include dark-theme {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
padding-bottom: 0px;
|
|
||||||
|
/* Leave some padding to eat the negative margin-bottom from
|
||||||
|
* .module-message__metadata
|
||||||
|
*/
|
||||||
|
padding-bottom: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.module-message__container--outgoing {
|
.module-message__container--outgoing {
|
||||||
|
|
|
@ -101,6 +101,9 @@ const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
||||||
i18n,
|
i18n,
|
||||||
id: text('id', overrideProps.id || ''),
|
id: text('id', overrideProps.id || ''),
|
||||||
interactionMode: overrideProps.interactionMode || 'keyboard',
|
interactionMode: overrideProps.interactionMode || 'keyboard',
|
||||||
|
isSticker: isBoolean(overrideProps.isSticker)
|
||||||
|
? overrideProps.isSticker
|
||||||
|
: false,
|
||||||
isBlocked: isBoolean(overrideProps.isBlocked)
|
isBlocked: isBoolean(overrideProps.isBlocked)
|
||||||
? overrideProps.isBlocked
|
? overrideProps.isBlocked
|
||||||
: false,
|
: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue