Skip to content

Commit

Permalink
Merge pull request #5 from msng/responsive-table
Browse files Browse the repository at this point in the history
Apply responsive table
  • Loading branch information
k1LoW authored Jun 11, 2017
2 parents c9717af + cc47686 commit 38741b2
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 26 deletions.
47 changes: 24 additions & 23 deletions dist/index.bundle.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
a {
color: #E06A3B;
}
.table-responsive {
overflow: scroll;
}
</style>

<nav class="nav has-shadow">
Expand Down
2 changes: 1 addition & 1 deletion src/tags/errors.tag
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child">
<div class="tile is-child table-responsive">
<table class="table projects-errors">
<tbody>
<tr each="{ error, i in opts.errors }">
Expand Down
2 changes: 1 addition & 1 deletion src/tags/overview.tag
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<div if={ occurrences.length } class="container">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child">
<div class="tile is-child table-responsive">
<h3>occurrences</h3>
<table class="table occurrences">
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion src/tags/projects.tag
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1 class="title">Projects</h1>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child">
<div class="tile is-child table-responsive">
<table class="table projects">
<tbody>
<tr each="{ project, i in opts.projects }">
Expand Down

0 comments on commit 38741b2

Please sign in to comment.