mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Fix delivery status overflow in sticker messages
This commit is contained in:
@@ -378,7 +378,11 @@
|
||||
@include dark-theme {
|
||||
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 {
|
||||
|
||||
@@ -101,6 +101,9 @@ const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
||||
i18n,
|
||||
id: text('id', overrideProps.id || ''),
|
||||
interactionMode: overrideProps.interactionMode || 'keyboard',
|
||||
isSticker: isBoolean(overrideProps.isSticker)
|
||||
? overrideProps.isSticker
|
||||
: false,
|
||||
isBlocked: isBoolean(overrideProps.isBlocked)
|
||||
? overrideProps.isBlocked
|
||||
: false,
|
||||
|
||||
Reference in New Issue
Block a user