forked from abner/for-legacy-web
fix(messagebox): fixed padding on action button
parent
03ec5275ee
commit
d3b78ebc48
|
|
@ -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;*/
|
||||
}
|
||||
|
||||
${() =>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue