Skip to content

Commit 0ac386d

Browse files
committed
fix: qa feedback - fixed message request buttons and other theming regressions
1 parent bc76cf6 commit 0ac386d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ts/components/conversation/ConversationRequestButtons.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ const ConversationBannerRow = styled.div`
3737
flex-direction: row;
3838
gap: var(--margins-lg);
3939
justify-content: center;
40+
41+
.session-button {
42+
padding: 0 36px;
43+
}
4044
`;
4145

4246
export const ConversationMessageRequestButtons = () => {
@@ -57,7 +61,6 @@ export const ConversationMessageRequestButtons = () => {
5761
<ConversationRequestBanner>
5862
<ConversationBannerRow>
5963
<SessionButton
60-
buttonColor={SessionButtonColor.Primary}
6164
onClick={async () => {
6265
await handleAcceptConversationRequest(selectedConversation.id);
6366
}}

ts/components/conversation/ConversationRequestInfo.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const ConversationRequestTextBottom = styled.div`
1212
flex-direction: row;
1313
justify-content: center;
1414
padding: var(--margins-lg);
15+
background-color: var(--background-secondary-color);
1516
`;
1617

1718
const ConversationRequestTextInner = styled.div`

ts/components/leftpane/overlay/OverlayMessageRequest.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ const MessageRequestListPlaceholder = styled.div`
2929
const MessageRequestListContainer = styled.div`
3030
width: 100%;
3131
overflow-y: auto;
32-
border: 1px solid var(--border-color);
3332
margin-bottom: auto;
3433
`;
3534

0 commit comments

Comments
 (0)