fix(messagebox): fixed padding

This commit is contained in:
trashtemp
2022-01-15 17:31:57 +01:00
parent 196bbe2634
commit c5461f3134
2 changed files with 11 additions and 5 deletions

View File

@@ -109,6 +109,15 @@ const Action = styled.div`
`}
`;
const FileAction = styled.div`
> div {
height: 48px;
width: 62px;
display: flex;
align-items: center;
justify-content: center;
`;
// For sed replacement
const RE_SED = new RegExp("^s/([^])*/([^])*$");
@@ -458,7 +467,7 @@ export default observer(({ channel }: Props) => {
/>
<Base>
{channel.permission & ChannelPermission.UploadFiles ? (
<Action>
<FileAction>
<FileUploader
size={24}
behaviour="multi"
@@ -493,7 +502,7 @@ export default observer(({ channel }: Props) => {
}
}}
/>
</Action>
</FileAction>
) : undefined}
<TextAreaAutoSize
autoFocus