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
1 change: 1 addition & 0 deletions app/components/HL.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ export const HL = classed.span`
group-[.text-accent-secondary]:text-accent
group-[.text-error-secondary]:text-error
group-[.text-info-secondary]:text-info
group-[.text-notice-secondary]:text-notice
`
8 changes: 6 additions & 2 deletions app/ui/lib/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const Message = ({
{showIcon && (
<div
className={cn(
'mt-[2px] flex [&>svg]:h-3 [&>svg]:w-3',
'mt-0.5 flex [&>svg]:h-3 [&>svg]:w-3',
`[&>svg]:${textColor[variant]}`
)}
>
Expand All @@ -96,7 +96,11 @@ export const Message = ({
<div className="flex-1">
{title && <div className="text-sans-semi-md">{title}</div>}
<div
className={cn('text-sans-md [&>a]:tint-underline', secondaryTextColor[variant])}
className={cn(
// group gives HL the right color
'text-sans-md [&>a]:tint-underline group',
secondaryTextColor[variant]
)}
>
{content}
</div>
Expand Down
Loading