Skip to content

Commit 16d1fa3

Browse files
committed
PEER-236: UI fixes
1 parent cfe5d33 commit 16d1fa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/blocks/interview/chat/chat-message.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const ChatMessage: React.FC<ChatMessageProps> = ({ message }) => {
3232
<div className={`flex ${message.isUser ? 'justify-end' : 'justify-start'} mb-4`}>
3333
<div
3434
className={`max-w-[85%] rounded-lg px-4 py-2 text-xs ${
35-
message.isUser ? 'bg-primary-foreground' : 'bg-secondary'
35+
message.isUser ? 'bg-secondary/50' : 'bg-secondary'
3636
}`}
3737
>
3838
{parts.map((part, index) => {

frontend/src/routes/interview/[room]/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const InterviewRoom = () => {
4949
<WithNavBlocker>
5050
<WithNavBanner crumbs={crumbs}>
5151
<div className='flex flex-1 overflow-hidden'>
52-
<Card className='border-border m-4 w-1/3 max-w-[500px] overflow-hidden p-4 md:w-2/5'>
52+
<Card className='border-border m-4 w-1/3 overflow-hidden p-4 md:w-2/5'>
5353
<QuestionDetails {...{ questionDetails }} />
5454
</Card>
5555
<div className='flex w-full'>

0 commit comments

Comments
 (0)