Skip to content
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 @@ -69,7 +69,7 @@ export function ChangeDocument(props: { children: ReactNode; className?: string
<table
aria-label="change-document"
className={cn(
'min-w-full cursor-default whitespace-pre font-mono text-white',
'min-w-full cursor-default whitespace-pre font-mono text-sm text-white',
props.className,
)}
style={{ counterReset: 'olddoc newdoc' }}
Expand Down Expand Up @@ -125,15 +125,15 @@ export function ChangeRow(props: {
<tr style={{ counterIncrement: incrementCounter }}>
<td
className={cn(
'schema-doc-row-old w-[42px] min-w-fit select-none bg-gray-900 p-1 pr-3 text-right text-gray-600',
'schema-doc-row-old w-[42px] min-w-fit select-none bg-gray-900 pr-3 text-right text-gray-600',
props.className,
props.type === 'removal' && 'bg-red-900/30',
props.type === 'addition' && 'invisible',
)}
/>
<td
className={cn(
'schema-doc-row-new w-[42px] min-w-fit select-none bg-gray-900 p-1 pr-3 text-right text-gray-600',
'schema-doc-row-new w-[42px] min-w-fit select-none bg-gray-900 pr-3 text-right text-gray-600',
props.className,
props.type === 'removal' && 'invisible',
props.type === 'addition' && 'bg-green-900/30',
Expand Down
Loading