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:
parent
72eced6b8b
commit
9b0da69637
@ -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 {
|
||||
|
@ -38,6 +38,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.walletWrapper {
|
||||
|
@ -74,11 +74,12 @@ const BodyContent = () => {
|
||||
)
|
||||
}
|
||||
|
||||
if (conversationId) {
|
||||
return <Conversation />
|
||||
}
|
||||
|
||||
return <List />
|
||||
return (
|
||||
<>
|
||||
<List />
|
||||
{conversationId && <Conversation />}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default function DirectMessages() {
|
||||
|
Loading…
Reference in New Issue
Block a user