1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

update styles for conversation details

This commit is contained in:
marcoelissa 2022-12-15 19:04:47 +07:00
parent 72eced6b8b
commit 9b0da69637
3 changed files with 12 additions and 6 deletions

View File

@ -1,8 +1,12 @@
.conversation { .conversation {
position: relative; position: absolute;
top: 0;
left: 0;
height: 100%; height: 100%;
width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: var(--background-content);
} }
.loading { .loading {

View File

@ -38,6 +38,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
position: relative;
} }
.walletWrapper { .walletWrapper {

View File

@ -74,11 +74,12 @@ const BodyContent = () => {
) )
} }
if (conversationId) { return (
return <Conversation /> <>
} <List />
{conversationId && <Conversation />}
return <List /> </>
)
} }
export default function DirectMessages() { export default function DirectMessages() {