diff --git a/src/components/common/messaging/MessageBox.tsx b/src/components/common/messaging/MessageBox.tsx index bcf22db7..b46b34c1 100644 --- a/src/components/common/messaging/MessageBox.tsx +++ b/src/components/common/messaging/MessageBox.tsx @@ -81,6 +81,10 @@ const Blocked = styled.div` flex-grow: 1; cursor: not-allowed; + .text { + padding: var(--message-box-padding); + } + > div > div { cursor: default; } diff --git a/src/styles/_variables.scss b/src/styles/_variables.scss index 7bf369bf..223588c9 100644 --- a/src/styles/_variables.scss +++ b/src/styles/_variables.scss @@ -30,10 +30,10 @@ --input-border-width: 2px; --textarea-padding: 16px; --textarea-line-height: 20px; - --message-box-padding: 14px; + --message-box-padding: 14px 14px 14px 0; - --attachment-max-width: 480px; - --attachment-max-height: 640px; + --attachment-max-width: 400px; + --attachment-max-height: 300px; --attachment-default-width: 400px; --attachment-max-text-width: 800px;