[v9.3.x] Table: Fixes row border style not showing and colored rows blending together (#59693)

This commit is contained in:
Grot (@grafanabot)
2022-12-07 16:45:21 +01:00
committed by GitHub
parent 0f6c4d1756
commit 083ebae58d
@@ -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};