Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/components/ChatMarkdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function MarkdownCodeBlock({ code, children }: { code: string; children: ReactNo
);

return (
<div className="chat-markdown-codeblock">
<div className="chat-markdown-codeblock leading-snug">
Comment thread
cursor[bot] marked this conversation as resolved.
<button
type="button"
className="chat-markdown-copy-button"
Expand Down
14 changes: 7 additions & 7 deletions apps/web/src/components/chat/MessagesTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export const MessagesTimeline = memo(function MessagesTimeline({
</Button>
)}
</div>
<p className="text-right text-[10px] text-muted-foreground/30">
<p className="text-right text-xs text-muted-foreground/50">
{formatTimestamp(row.message.createdAt, timestampFormat)}
</p>
</div>
Expand Down Expand Up @@ -515,7 +515,7 @@ export const MessagesTimeline = memo(function MessagesTimeline({
</div>
);
})()}
<p className="mt-1.5 text-[10px] text-muted-foreground/30">
<p className="mt-1.5 text-xs text-muted-foreground/50">
{formatMessageMeta(
row.message.createdAt,
row.message.streaming
Expand Down Expand Up @@ -703,7 +703,7 @@ const UserMessageBody = memo(function UserMessageBody(props: {
}

return (
<div className="wrap-break-word whitespace-pre-wrap font-mono text-sm leading-relaxed text-foreground">
<div className="whitespace-pre-wrap wrap-break-word text-sm leading-relaxed text-foreground">
{inlineNodes}
</div>
);
Expand Down Expand Up @@ -731,7 +731,7 @@ const UserMessageBody = memo(function UserMessageBody(props: {
}

return (
<div className="wrap-break-word whitespace-pre-wrap font-mono text-sm leading-relaxed text-foreground">
<div className="whitespace-pre-wrap wrap-break-word text-sm leading-relaxed text-foreground">
{inlineNodes}
</div>
);
Expand All @@ -742,9 +742,9 @@ const UserMessageBody = memo(function UserMessageBody(props: {
}

return (
<pre className="whitespace-pre-wrap wrap-break-word font-mono text-sm leading-relaxed text-foreground">
<div className="whitespace-pre-wrap wrap-break-word text-sm leading-relaxed text-foreground">
{props.text}
</pre>
</div>
Comment thread
cursor[bot] marked this conversation as resolved.
);
});

Expand Down Expand Up @@ -871,7 +871,7 @@ const SimpleWorkEntryRow = memo(function SimpleWorkEntryRow(props: {
<div className="max-w-full">
<p
className={cn(
"truncate text-[11px] leading-5",
"truncate text-xs leading-5",
workToneClass(workEntry.tone),
preview ? "text-muted-foreground/70" : "",
)}
Expand Down
3 changes: 1 addition & 2 deletions apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,7 @@ label:has(> select#reasoning-effort) select {
border: none;
background: transparent;
padding: 0;
line-height: 1.5;
font-size: 0.875rem;
font-size: 0.75rem;
}

.chat-markdown .chat-markdown-codeblock {
Expand Down
Loading