diff --git a/packages/grafana-ui/src/components/Table/styles.ts b/packages/grafana-ui/src/components/Table/styles.ts index 0f769c4c9333..ebc27d5b9798 100644 --- a/packages/grafana-ui/src/components/Table/styles.ts +++ b/packages/grafana-ui/src/components/Table/styles.ts @@ -37,7 +37,8 @@ export const getTableStyles = (theme: GrafanaTheme2) => { label: ${overflowOnHover ? 'cellContainerOverflow' : 'cellContainerNoOverflow'}; padding: ${cellPadding}px; width: 100%; - height: ${rowHeight}px; + // Cell height need to account for row border + height: ${rowHeight - 1}px; display: flex; align-items: center; border-right: 1px solid ${borderColor};