diff --git a/UNRELEASED.md b/UNRELEASED.md index 02a75096a02..c0a87c6d6f6 100644 --- a/UNRELEASED.md +++ b/UNRELEASED.md @@ -18,6 +18,7 @@ Use [the changelog guidelines](/documentation/Versioning%20and%20changelog.md) t - Fixed `segmented` `ButtonGroup` misaligning icon only buttons when grouped with text only buttons ([#4079](https://github.com/Shopify/polaris-react/issues/4079)) - Added missing styles for `destructive` `Page` `secondaryActions` ([#4647](https://github.com/Shopify/polaris-react/pull/4647)) - Removed `min-height` from `Page` `additionalNavigation` ([#4952](https://github.com/Shopify/polaris-react/pull/4952)) +- Fixed overly dark `bottom-border` on `DataTable` header cell and total cell. ([#4975])(https://github.com/Shopify/polaris-react/pull/4975) ### Documentation diff --git a/src/components/DataTable/DataTable.scss b/src/components/DataTable/DataTable.scss index 2a05ee5be0f..fc68bb5c607 100644 --- a/src/components/DataTable/DataTable.scss +++ b/src/components/DataTable/DataTable.scss @@ -92,7 +92,7 @@ $breakpoint: 768px; .Cell-header { @include text-emphasis-normal; - border-bottom: border(dark); + border-bottom: border('divider'); border-top: 0; } @@ -165,7 +165,7 @@ $breakpoint: 768px; .Cell-total { @include text-emphasis-strong; background: var(--p-surface-subdued); - border-bottom: border(); + border-bottom: border('divider'); } .Cell-total-footer {