fix(messagebox): fixed padding on action button

This commit is contained in:
trashtemp 2021-12-28 21:42:09 +01:00
parent 03ec5275ee
commit d3b78ebc48
No known key found for this signature in database
GPG key ID: D1F0DB65081B0FC6
2 changed files with 10 additions and 6 deletions

View file

@ -80,7 +80,7 @@ const Blocked = styled.div`
color: var(--tertiary-foreground);
.text {
padding: 14px 14px 14px 0;
padding: 14px;
}
svg {
@ -89,13 +89,17 @@ const Blocked = styled.div`
`;
const Action = styled.div`
display: flex;
place-items: center;
/*display: flex;
align-items: center;
justify-content: center;*/
> div {
height: 48px;
width: 48px;
padding: 12px;
width: 34px;
display: flex;
align-items: center;
justify-content: end;
/*padding: 14px 0 14px 14px;*/
}
${() =>

View file

@ -30,7 +30,7 @@
--input-border-width: 2px;
--textarea-padding: 16px;
--textarea-line-height: 20px;
--message-box-padding: 14px 14px 14px 0;
--message-box-padding: 14px;
--attachment-max-width: 480px;
--attachment-max-height: 640px;