From 5526763c4d750e7599446f377b4cf0b263a56e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Chy=C5=82a?= Date: Mon, 24 Apr 2023 14:28:20 +0200 Subject: [PATCH] Fix row group height in datagrid (#3550) --- src/components/Datagrid/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Datagrid/styles.ts b/src/components/Datagrid/styles.ts index 6c7c45402..26ad9f5dc 100644 --- a/src/components/Datagrid/styles.ts +++ b/src/components/Datagrid/styles.ts @@ -132,7 +132,7 @@ const useStyles = makeStyles( height: `calc(${cellHeight}px - 1px)`, }, rowColumnGroup: { - height: cellHeight + 15, + height: cellHeight, }, rowActionScrolledToRight: { borderLeftColor: vars.colors.border.neutralHighlight,