Skip to content

Commit 75bc739

Browse files
committed
Specify flex layout within the examples
1 parent e141673 commit 75bc739

10 files changed

+17
-17
lines changed

docs/bundle.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34847,21 +34847,21 @@ if(false) {
3484734847
/***/ "./all-breakpoints.md":
3484834848
/***/ (function(module, exports) {
3484934849

34850-
module.exports = "<Container>\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n <Row>\n <Col width={8}>col-8</Col>\n <Col width={4}>col-4</Col>\n </Row>\n</Container>\n"
34850+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n <Row>\n <Col width={8}>col-8</Col>\n <Col width={4}>col-4</Col>\n </Row>\n</Container>\n"
3485134851

3485234852
/***/ }),
3485334853

3485434854
/***/ "./equal-width-multi-row.md":
3485534855
/***/ (function(module, exports) {
3485634856

34857-
module.exports = "<Container>\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n</Container>\n"
34857+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n <Row>\n <Col>col</Col>\n <Col>col</Col>\n </Row>\n</Container>\n"
3485834858

3485934859
/***/ }),
3486034860

3486134861
/***/ "./equal-width.md":
3486234862
/***/ (function(module, exports) {
3486334863

34864-
module.exports = "<Container>\n <Row>\n <Col>1 of 2</Col>\n <Col>2 of 2</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col>2 of 3</Col>\n <Col>3 of 3</Col>\n </Row>\n</Container>\n"
34864+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col>1 of 2</Col>\n <Col>2 of 2</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col>2 of 3</Col>\n <Col>3 of 3</Col>\n </Row>\n</Container>\n"
3486534865

3486634866
/***/ }),
3486734867

@@ -35058,30 +35058,30 @@ _reactDom2.default.render(_react2.default.createElement(App, null), document.get
3505835058
/***/ "./mix-and-match.md":
3505935059
/***/ (function(module, exports) {
3506035060

35061-
module.exports = "<Container>\n <Row>\n <Col xs md={8}>col-md-8</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n </Row>\n <Row>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n </Row>\n <Row>\n <Col width={6}>col-6</Col>\n <Col width={6}>col-6</Col>\n </Row>\n</Container>\n"
35061+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col xs md={8}>col-md-8</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n </Row>\n <Row>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n <Col width={6} md={4}>col-6 col-md-4</Col>\n </Row>\n <Row>\n <Col width={6}>col-6</Col>\n <Col width={6}>col-6</Col>\n </Row>\n</Container>\n"
3506235062

3506335063
/***/ }),
3506435064

3506535065
/***/ "./setting-one-column-width.md":
3506635066
/***/ (function(module, exports) {
3506735067

35068-
module.exports = "<Container>\n <Row>\n <Col>1 of 3</Col>\n <Col width={6}>2 of 3 (wider)</Col>\n <Col>3 of 3</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col width={5}>2 of 3 (wider)</Col>\n <Col>3 of 3</Col>\n </Row>\n</Container>\n"
35068+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col>1 of 3</Col>\n <Col width={6}>2 of 3 (wider)</Col>\n <Col>3 of 3</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col width={5}>2 of 3 (wider)</Col>\n <Col>3 of 3</Col>\n </Row>\n</Container>\n"
3506935069

3507035070
/***/ }),
3507135071

3507235072
/***/ "./stacked-to-horizontal.md":
3507335073
/***/ (function(module, exports) {
3507435074

35075-
module.exports = "<Container>\n <Row>\n <Col sm={8}>col-sm-8</Col>\n <Col sm={4}>col-sm-4</Col>\n </Row>\n <Row>\n <Col sm>col-sm</Col>\n <Col sm>col-sm</Col>\n <Col sm>col-sm</Col>\n </Row>\n</Container>\n"
35075+
module.exports = "<Container layout=\"flex\">\n <Row>\n <Col sm={8}>col-sm-8</Col>\n <Col sm={4}>col-sm-4</Col>\n </Row>\n <Row>\n <Col sm>col-sm</Col>\n <Col sm>col-sm</Col>\n <Col sm>col-sm</Col>\n </Row>\n</Container>\n"
3507635076

3507735077
/***/ }),
3507835078

3507935079
/***/ "./variable-width-content.md":
3508035080
/***/ (function(module, exports) {
3508135081

35082-
module.exports = "<Container>\n <Row style={{ justifyContent: 'center' }}>\n <Col xs lg={2}>1 of 3</Col>\n <Col width={12} md=\"auto\">Variable width content</Col>\n <Col xs lg={2}>3 of 3</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col width={12} md=\"auto\">Variable width content</Col>\n <Col xs lg={2}>3 of 3</Col>\n </Row>\n</Container>\n"
35082+
module.exports = "<Container layout=\"flex\">\n <Row style={{ justifyContent: 'center' }}>\n <Col xs lg={2}>1 of 3</Col>\n <Col width={12} md=\"auto\">Variable width content</Col>\n <Col xs lg={2}>3 of 3</Col>\n </Row>\n <Row>\n <Col>1 of 3</Col>\n <Col width={12} md=\"auto\">Variable width content</Col>\n <Col xs lg={2}>3 of 3</Col>\n </Row>\n</Container>\n"
3508335083

3508435084
/***/ })
3508535085

3508635086
/******/ });
35087-
//# sourceMappingURL=bundle.js.map?2f2064b135e4558d953d
35087+
//# sourceMappingURL=bundle.js.map?97a8e31884962ca0af62

docs/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
<body>
1515
<div id="container"></div>
1616
<script src="//cdn.polyfill.io/v2/polyfill.min.js"></script>
17-
<script type="text/javascript" src="bundle.js?2f2064b135e4558d953d"></script></body>
17+
<script type="text/javascript" src="bundle.js?97a8e31884962ca0af62"></script></body>
1818
</html>

examples/all-breakpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col>col</Col>
44
<Col>col</Col>

examples/equal-width-multi-row.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col>col</Col>
44
<Col>col</Col>

examples/equal-width.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col>1 of 2</Col>
44
<Col>2 of 2</Col>

examples/mix-and-match.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col xs md={8}>col-md-8</Col>
44
<Col width={6} md={4}>col-6 col-md-4</Col>

examples/setting-one-column-width.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col>1 of 3</Col>
44
<Col width={6}>2 of 3 (wider)</Col>

examples/stacked-to-horizontal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row>
33
<Col sm={8}>col-sm-8</Col>
44
<Col sm={4}>col-sm-4</Col>

examples/variable-width-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Container>
1+
<Container layout="flex">
22
<Row style={{ justifyContent: 'center' }}>
33
<Col xs lg={2}>1 of 3</Col>
44
<Col width={12} md="auto">Variable width content</Col>

0 commit comments

Comments
 (0)