fix: qa feedback - fixed message request buttons and other theming regressions

pull/2522/head
William Grant 3 years ago
parent bc76cf6b33
commit 0ac386dc1b

@ -37,6 +37,10 @@ const ConversationBannerRow = styled.div`
flex-direction: row;
gap: var(--margins-lg);
justify-content: center;
.session-button {
padding: 0 36px;
}
`;
export const ConversationMessageRequestButtons = () => {
@ -57,7 +61,6 @@ export const ConversationMessageRequestButtons = () => {
<ConversationRequestBanner>
<ConversationBannerRow>
<SessionButton
buttonColor={SessionButtonColor.Primary}
onClick={async () => {
await handleAcceptConversationRequest(selectedConversation.id);
}}

@ -12,6 +12,7 @@ const ConversationRequestTextBottom = styled.div`
flex-direction: row;
justify-content: center;
padding: var(--margins-lg);
background-color: var(--background-secondary-color);
`;
const ConversationRequestTextInner = styled.div`

@ -29,7 +29,6 @@ const MessageRequestListPlaceholder = styled.div`
const MessageRequestListContainer = styled.div`
width: 100%;
overflow-y: auto;
border: 1px solid var(--border-color);
margin-bottom: auto;
`;

Loading…
Cancel
Save