Skip to content

Commit 87ca0ac

Browse files
committed
fix container css class for some frameworks
1 parent 3d8a3d1 commit 87ca0ac

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

frameworks/keyed/arrowjs/src/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function buildData(count = 1000) {
4545
data[i] = { id: rowId++, label: adjectives[_random(adjectives.length)] + " " + colours[_random(colours.length)] + " " + nouns[_random(nouns.length)] };
4646
return data;
4747
}
48-
html`<div>
48+
html`<div class="container">
4949
<div class="jumbotron">
5050
<div class="row">
5151
<div class="col-md-6">

frameworks/non-keyed/alins/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</head>
1313
<body>
1414
<!-- <script src="alins.iife.min.js"></script> -->
15-
<div id="main" class="container"></div>
15+
<div id="main"></div>
1616
<script src='dist/main.js'></script>
1717
</body>
1818
</html>

frameworks/non-keyed/alins/src/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function swapRows () {
5959
}
6060
}
6161

62-
document.body.appendChild(<div>
62+
document.body.appendChild(<div class="container">
6363
<div class="jumbotron">
6464
<div class="row">
6565
<div class="col-md-6">

frameworks/non-keyed/arrowjs/src/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function buildData(count = 1000) {
4545
data[i] = { id: rowId++, label: adjectives[_random(adjectives.length)] + " " + colours[_random(colours.length)] + " " + nouns[_random(nouns.length)] };
4646
return data;
4747
}
48-
html`<div>
48+
html`<div class="container">
4949
<div class="jumbotron">
5050
<div class="row">
5151
<div class="col-md-6">

frameworks/non-keyed/strve/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88

99
<body>
10-
<div id="main"></div>
10+
<div id="main" class="container"></div>
1111
<script src="dist/main.js"></script>
1212
</body>
1313
</html>

0 commit comments

Comments
 (0)