fix(connection-table): set boxSizing to border-box for header and cells

Closes #5611
This commit is contained in:
Slinetrac 2025-11-26 17:48:21 +08:00
parent affdfc045e
commit cbd8c89097
No known key found for this signature in database

View File

@ -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",