diff --git a/UNRELEASED.md b/UNRELEASED.md index 064e5859af0..aa91e51ae98 100644 --- a/UNRELEASED.md +++ b/UNRELEASED.md @@ -17,6 +17,9 @@ ### Bug fixes +- Fixed incorrect `icon` color of `Button` when `destructive` and `plain` ([#2958](https://github.com/Shopify/polaris-react/issues/2958)) +- Fixed sizing issue with `CheckableButtonWrapper` on `ResourceList` ([#2961](https://github.com/Shopify/polaris-react/issues/2961)) + ### Documentation ### Development workflow diff --git a/src/components/ResourceList/ResourceList.scss b/src/components/ResourceList/ResourceList.scss index 8ee6ed2a87a..e26fd20a9f4 100644 --- a/src/components/ResourceList/ResourceList.scss +++ b/src/components/ResourceList/ResourceList.scss @@ -240,3 +240,16 @@ $item-wrapper-loading-height: rem(64px); .disableTextSelection { user-select: none; } + +.HeaderTitleWrapper, +.CheckableButtonWrapper, +.AlternateToolWrapper, +.SortWrapper, +.SelectButtonWrapper { + @include layout-flex-fix; +} + +.HeaderTitleWrapper, +.CheckableButtonWrapper { + min-width: spacing(); +}