Skip to content

Commit 444e26d

Browse files
andresdjassoclaude
authored andcommitted
improvement(tables): round the empty-state grid's crisp corner
6px on the top-left only — the one corner the fade leaves intact, and the same radius the workflow editor's vignette uses. The other three dissolve, so there is nothing there to round. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent ff7d91e commit 444e26d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/sim/app/workspace/[workspaceId]/components/resource/components/resource-empty-state

apps/sim/app/workspace/[workspaceId]/components/resource/components/resource-empty-state/tables-empty-state.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const SELECTED_CELL = { row: 1, column: 0 } as const
5151
function TablesGraphic() {
5252
return (
5353
<div aria-hidden='true' className={`relative h-[148px] w-[320px] ${CORNER_FADE}`}>
54-
<div className='absolute top-[14px] left-[54px] border-[var(--border-1)] border-t border-l'>
54+
<div className='absolute top-[14px] left-[54px] rounded-tl-[6px] border-[var(--border-1)] border-t border-l'>
5555
<div className='grid' style={{ gridTemplateColumns: COLUMN_TEMPLATE }}>
5656
{HEADER_WIDTHS.map((width, column) => (
5757
<div

0 commit comments

Comments
 (0)