Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
fix(displayProps): Allow 'inline-flex' display value
Browse files Browse the repository at this point in the history
  • Loading branch information
diondiondion committed Nov 3, 2020
1 parent 7bc4748 commit 95e5f06
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/styleProps/displayProps.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import {createStyleFunction} from '../utils/styleProps';
import {ellipsis, overflowWrap as wrap} from '../mixins';

const supportedDisplayValues = ['block', 'inline', 'inline-block', 'flex'];
const supportedDisplayValues = [
'block',
'inline',
'inline-block',
'flex',
'inline-flex',
];

const overflowStylesMap = {
ellipsis,
Expand Down

0 comments on commit 95e5f06

Please sign in to comment.