Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ export function ReportDetailPane({ report, onClose }: ReportDetailPaneProps) {
>
<Flex align="start" justify="between" gap="2">
<Text
size="1"
weight="medium"
className="block min-w-0 break-words text-[13px]"
size="2"
weight="bold"
className="block min-w-0 break-words text-[14px]"
>
{report.title ?? "Untitled signal"}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function ReportCardContent({
<Flex align="center" gapX="2" wrap="wrap" className="min-w-0 flex-1">
<Text
size="1"
weight="medium"
weight="bold"
className="min-w-0 flex-1 basis-0 truncate text-[13px]"
>
{report.title ?? "Untitled signal"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function SignalReportSummaryMarkdown({
if (variant === "list") {
return (
<Box
className="[&_.rt-Text]:!mb-0 [&_p]:!mb-0 [&_ul]:!mb-0 min-w-0 text-left [&_li]:mb-0"
className="[&_.rt-Text]:!mb-0 [&_.rt-Text]:!text-[12px] [&_p]:!mb-0 [&_ul]:!mb-0 min-w-0 text-left [&_li]:mb-0"
style={{ color: "var(--gray-11)", ...italicStyle }}
>
<div className="line-clamp-2 overflow-hidden text-[12px] leading-snug [&_a]:pointer-events-auto">
Expand All @@ -39,7 +39,7 @@ export function SignalReportSummaryMarkdown({

return (
<Box
className="min-w-0 text-pretty break-words [&_.rt-Text]:mb-2 [&_li]:mb-1 [&_p:last-child]:mb-0"
className="min-w-0 text-pretty break-words [&_.rt-Text]:mb-2 [&_.rt-Text]:!text-[12px] [&_li]:mb-1 [&_p:last-child]:mb-0"
style={{ color: "var(--gray-11)", ...italicStyle }}
>
<div className="text-[12px] leading-relaxed [&_a]:pointer-events-auto">
Expand Down
Loading