Skip to content

Commit b968500

Browse files
committed
Fix for showing the last table row divider
1 parent 4c92102 commit b968500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/code/TSQLResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ export const TSQLResultsTable = memo(function TSQLResultsTable({
11391139
height: `${rowVirtualizer.getTotalSize()}px`,
11401140
position: "relative",
11411141
}}
1142-
className="divide-y divide-charcoal-700 border-b border-grid-bright bg-background-bright"
1142+
className="divide-y divide-charcoal-700 bg-background-bright after:absolute after:bottom-0 after:left-0 after:right-0 after:z-[1] after:h-px after:bg-grid-bright"
11431143
>
11441144
{rowVirtualizer.getVirtualItems().map((virtualRow) => {
11451145
const row = tableRows[virtualRow.index];

0 commit comments

Comments
 (0)