From 1909c65263a755e9edebe639061bff8b98d5b05e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dro=C5=84?= Date: Tue, 22 Aug 2023 15:42:29 +0200 Subject: [PATCH] Add extra padding to datagrid (#4114) * Add extra padding to datagrid * Add changeset --- .changeset/breezy-camels-eat.md | 5 +++++ src/components/Datagrid/styles.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/breezy-camels-eat.md diff --git a/.changeset/breezy-camels-eat.md b/.changeset/breezy-camels-eat.md new file mode 100644 index 000000000..167fb56d5 --- /dev/null +++ b/.changeset/breezy-camels-eat.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Add 1px bottom padding to datagrid diff --git a/src/components/Datagrid/styles.ts b/src/components/Datagrid/styles.ts index 684d33c9a..e1bf9f550 100644 --- a/src/components/Datagrid/styles.ts +++ b/src/components/Datagrid/styles.ts @@ -96,6 +96,7 @@ const useStyles = makeStyles<{ actionButtonPosition?: "left" | "right" }>( borderRadius: 0, boxSizing: "content-box", width: "100%", + paddingBottom: "1px", }, root: { position: "relative",