Skip to content

Commit

Permalink
feat(table): add table is-dark is-bordered in index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
guastallaigor committed Dec 8, 2018
1 parent 162391f commit b6d4815
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,11 @@ <h2 class="title">Balloons</h2>
</div>
</section>

<section class="container with-title">
<section class="container with-title" style="display:flex">
<h2 class="title">Table</h2>
<table class="table is-bordered is-centered" style="margin:15px 4px 5px 4px">
<table class="table is-bordered is-centered" style="margin:15px 15px 5px 0;">
<thead>
<tr>
<th>Table</th>
<th>Table.is-bordered</th>
<th>Table.is-centered</th>
</tr>
Expand All @@ -146,12 +145,28 @@ <h2 class="title">Table</h2>
<tr>
<td>Thou hast had a good morning</td>
<td>Thou hast had a good afternoon</td>
<td>Thou hast had a good night</td>
</tr>
<tr>
<td>Thou hast had a good morning</td>
<td>Thou hast had a good afternoon</td>
<td>Thou hast had a good night</td>
</tr>
</tbody>
</table>
<table class="table is-bordered is-dark" style="margin:15px 4px 5px 15px">
<thead>
<tr>
<th>Table.is-dark</th>
<th>Table.is-bordered</th>
</tr>
</thead>
<tbody>
<tr>
<td>Thou hast had a good morning</td>
<td>Thou hast had a good morning</td>
</tr>
<tr>
<td>Thou hast had a good morning</td>
<td>Thou hast had a good afternoon</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit b6d4815

Please sign in to comment.