Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
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 @@ -70,7 +70,20 @@ export const FormCard: FunctionComponent<NodeProps> = ({
color: 'black',
}}
>
<div css={{ padding: '4px 8px', fontSize: '12px', fontFamily: 'Segoe UI', lineHeight: '14px' }}>{header}</div>
<div
css={{
padding: '4px 8px',
fontSize: '12px',
fontFamily: 'Segoe UI',
lineHeight: '14px',
overflow: 'hidden',
textOverflow: 'ellipsis',
width: 'calc(100% - 40px)',
whiteSpace: 'pre',
}}
>
{header}
</div>
<div css={{ position: 'absolute', top: 4, right: 0 }}>{corner}</div>
</div>
<div
Expand Down