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 {
position: relative;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
background-color: var(--background-content);
}
.loading {

View File

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

View File

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