From cbd8c890972b19cd5f4148f0fef19740f6f4afaf Mon Sep 17 00:00:00 2001 From: Slinetrac Date: Wed, 26 Nov 2025 17:48:21 +0800 Subject: [PATCH] fix(connection-table): set boxSizing to border-box for header and cells Closes #5611 --- src/components/connection/connection-table.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/connection/connection-table.tsx b/src/components/connection/connection-table.tsx index 774eded22..fd8eb4652 100644 --- a/src/components/connection/connection-table.tsx +++ b/src/components/connection/connection-table.tsx @@ -526,6 +526,7 @@ export const ConnectionTable = (props: Props) => { display: "flex", alignItems: "center", position: "relative", + boxSizing: "border-box", px: 1, py: 1, fontSize: 13, @@ -627,6 +628,7 @@ export const ConnectionTable = (props: Props) => { flex: `0 0 ${cell.column.getSize()}px`, minWidth: cell.column.columnDef.minSize || 80, maxWidth: cell.column.columnDef.maxSize, + boxSizing: "border-box", px: 1, fontSize: 13, display: "flex",