Action Messages: Fix layout regression (#2628)

This commit is contained in:
Alexander Zinchuk 2023-02-21 18:28:07 +01:00
parent a956de12f0
commit 9acabf2a79
2 changed files with 5 additions and 0 deletions

View File

@ -198,6 +198,7 @@ const ActionMessage: FC<OwnProps & StateProps> = ({
(isGift || isSuggestedAvatar) && 'centered-action',
isContextMenuShown && 'has-menu-open',
isLastInList && 'last-in-list',
!isGift && !isSuggestedAvatar && 'in-one-row',
transitionClassNames,
);

View File

@ -385,6 +385,10 @@
.ActionMessage {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.local-action-message,
.ActionMessage.in-one-row {
height: 1.5625rem;
}