chore: update UXs

This commit is contained in:
zerosoul
2022-04-06 17:01:09 +08:00
parent 22b9150309
commit 049c761b7e
7 changed files with 17 additions and 10 deletions
+5 -2
View File
@@ -103,11 +103,11 @@ export const StyledChannelChat = styled.article`
> .wrapper {
display: flex;
flex-direction: column;
padding: 0 16px;
padding: 0;
padding-bottom: 10px;
height: calc(100vh - 56px);
.chat {
padding: 18px 0;
padding: 18px 16px;
height: 100%;
height: -webkit-fill-available;
overflow: auto;
@@ -145,5 +145,8 @@ export const StyledChannelChat = styled.article`
flex-direction: column-reverse; */
}
}
> .send {
margin: 0 16px;
}
}
`;
+5 -2
View File
@@ -47,13 +47,16 @@ export const StyledDMChat = styled.article`
display: flex;
flex-direction: column;
width: 100%;
padding: 0 16px;
padding: 0;
padding-bottom: 10px;
height: calc(100vh - 56px);
> .chat {
padding: 18px 0;
padding: 18px 16px;
height: 100%;
height: -webkit-fill-available;
overflow: auto;
}
> .send {
margin: 0 16px;
}
`;