File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/blocks/interview/chat Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export const ChatMessage: React.FC<ChatMessageProps> = ({ message }) => {
32
32
< div className = { `flex ${ message . isUser ? 'justify-end' : 'justify-start' } mb-4` } >
33
33
< div
34
34
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'
36
36
} `}
37
37
>
38
38
{ parts . map ( ( part , index ) => {
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export const InterviewRoom = () => {
49
49
< WithNavBlocker >
50
50
< WithNavBanner crumbs = { crumbs } >
51
51
< 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' >
53
53
< QuestionDetails { ...{ questionDetails } } />
54
54
</ Card >
55
55
< div className = 'flex w-full' >
You can’t perform that action at this time.
0 commit comments