From 3ad46a60652bb34e49db59d150e54548676d367c Mon Sep 17 00:00:00 2001 From: kuzhelov Date: Fri, 17 May 2019 12:01:31 +0300 Subject: [PATCH 1/2] fix 'fill' styles --- packages/react/src/themes/base/components/Flex/flexStyles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/themes/base/components/Flex/flexStyles.ts b/packages/react/src/themes/base/components/Flex/flexStyles.ts index 9d2adf390d..cde9351be1 100644 --- a/packages/react/src/themes/base/components/Flex/flexStyles.ts +++ b/packages/react/src/themes/base/components/Flex/flexStyles.ts @@ -27,6 +27,7 @@ const flexStyles: ComponentSlotStylesInput = { ...(p.wrap && { flexWrap: 'wrap' }), ...(p.fill && { + width: '100%', height: '100%', }), From 605a81ad3cc5525aa7e1c74c0a86b52770701cbc Mon Sep 17 00:00:00 2001 From: kuzhelov Date: Fri, 17 May 2019 19:35:54 +0300 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a13f18268..42beb71655 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### BREAKING CHANGES - Restrict Typescript checks for component props @kuzhelov ([#1290](https://github.com/stardust-ui/react/pull/1290)) - Aligned focus styles for `Chat.Message` component with latest Teams theme design @Bugaa92 ([#1269](https://github.com/stardust-ui/react/pull/1269)) +- Fix styles for `fill` prop of `Flex` @kuzhelov ([#1352](https://github.com/stardust-ui/react/pull/1352)) ### Fixes - Fixed `Flex.Item` children prop type @mnajdova ([#1320](https://github.com/stardust-ui/react/pull/1320))