Fix row-flex-space-around, close #1781

pull/1817/head
afc163 9 years ago
parent b2cb8a0f01
commit b06cdd08c3

@ -16,7 +16,7 @@ export default class Row extends React.Component {
render() {
const { type, justify, align, className, gutter, style, children, ...others } = this.props;
const classes = classNames({
row: true,
row: !type,
[`row-${type}`]: type,
[`row-${type}-${justify}`]: justify,
[`row-${type}-${align}`]: align,

@ -205,7 +205,8 @@
margin-bottom: 10px;
color: #fff;
}
.code-box-demo .row > div:not(.gutter-row) {
.code-box-demo .row > div:not(.gutter-row),
.code-box-demo .row-flex > div:not(.gutter-row) {
background: #6AC2F5;
border: 1px solid rgba(0, 0, 0, 0.1);
}

Loading…
Cancel
Save