Skip to content

Commit

Permalink
flex fix #1532
Browse files Browse the repository at this point in the history
  • Loading branch information
pingan1927 committed Jul 10, 2017
1 parent 12a002d commit c93cfb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/flex/Flex.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export default class Flex extends React.Component<FlexProps, any> {
[`${prefixCls}-justify-between`]: justify === 'between',
[`${prefixCls}-justify-around`]: justify === 'around',

[`${prefixCls}-align-top`]: align === 'top' || align === 'start',
[`${prefixCls}-align-middle`]: align === 'middle' || align === 'center',
[`${prefixCls}-align-bottom`]: align === 'bottom' || align === 'end',
[`${prefixCls}-align-top`]: align === 'start',
[`${prefixCls}-align-middle`]: align === 'center',
[`${prefixCls}-align-bottom`]: align === 'end',
[`${prefixCls}-align-baseline`]: align === 'baseline',
[`${prefixCls}-align-stretch`]: align === 'stretch',

Expand Down

0 comments on commit c93cfb9

Please sign in to comment.