Skip to content

Commit

Permalink
Improved styles
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Sep 5, 2024
1 parent b1f127d commit 0c3325b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/timer-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h5>Timer</h5>
</div>
<div class="col-md-6">
<table id="timerTable" class="table">
<tbody class="h4"></tbody>
<tbody></tbody>
</table>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/TimerTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class TimerTable extends AbstractComponent {
tr = document.createElement('tr');
wTd = document.createElement('td');
bTd = document.createElement('td');
tr.classList.add('h6');
wTd.classList.add('text-end');
wTd.appendChild(document.createTextNode(this.props.username.w));
bTd.appendChild(document.createTextNode(this.props.username.b));
Expand All @@ -50,6 +49,7 @@ export class TimerTable extends AbstractComponent {
tr = document.createElement('tr');
wTd = document.createElement('td');
bTd = document.createElement('td');
tr.classList.add('h4');
wTd.classList.add('text-end');
wTd.appendChild(document.createTextNode(this._convert(this.props.seconds.w)));
bTd.appendChild(document.createTextNode(this._convert(this.props.seconds.b)));
Expand Down

0 comments on commit 0c3325b

Please sign in to comment.