diff --git a/net/web/src/session/contact/Contact.jsx b/net/web/src/session/contact/Contact.jsx index 57ebfc34..f829bbfd 100644 --- a/net/web/src/session/contact/Contact.jsx +++ b/net/web/src/session/contact/Contact.jsx @@ -117,15 +117,18 @@ export function Contact({ close, guid, listing }) { { state.init && state.display !== 'xlarge' && (
- { state.display === 'small' && ( -
- )} +
{ state.handle }
{ state.display === 'small' && (
)} + { state.display !== 'small' && ( +
+ +
+ )}
{ Image } { Details } diff --git a/net/web/src/session/conversation/Conversation.jsx b/net/web/src/session/conversation/Conversation.jsx index d086959e..832348b6 100644 --- a/net/web/src/session/conversation/Conversation.jsx +++ b/net/web/src/session/conversation/Conversation.jsx @@ -13,7 +13,9 @@ console.log(state);
- +
{ state.subject }
{ state.display !== 'xlarge' && (
diff --git a/net/web/src/session/conversation/Conversation.styled.js b/net/web/src/session/conversation/Conversation.styled.js index d3582759..de7ca7c6 100644 --- a/net/web/src/session/conversation/Conversation.styled.js +++ b/net/web/src/session/conversation/Conversation.styled.js @@ -26,9 +26,18 @@ export const ConversationWrapper = styled.div` display: flex; flex-direction: row; align-items: center; + min-width: 0; .label { padding-left: 8px; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + min-width: 0; + } + + .logo { + flex-shrink: 0; } }