Skip to content

Commit

Permalink
Table: Fixes row border style not showing and colored rows blending t…
Browse files Browse the repository at this point in the history
…ogether (#59660)

* Table: Fixex row border style not showing and colored rows blending together

* Updated

(cherry picked from commit 37c118b)
  • Loading branch information
torkelo authored and grafanabot committed Dec 2, 2022
1 parent 1e47c58 commit 5ecb902
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/grafana-ui/src/components/Table/styles.ts
Expand Up @@ -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};
Expand Down

0 comments on commit 5ecb902

Please sign in to comment.