Skip to content

Commit

Permalink
Set width of columns in history table
Browse files Browse the repository at this point in the history
  • Loading branch information
qsantos committed Oct 19, 2024
1 parent bf16263 commit 8d3fabc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ <h3>${t('history.title')}</h3>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>${t('history.started')}</th>
<th>${t('history.copiedText')}</th>
<th>${t('history.elapsed')}</th>
<th>${t('history.characters')}</th>
<th>${t('history.groups')}</th>
<th>${t('history.score')}</th>
<th style="width:20%">${t('history.started')}</th>
<th style="width:30%">${t('history.copiedText')}</th>
<th style="width:12.5%">${t('history.elapsed')}</th>
<th style="width:12.5%">${t('history.characters')}</th>
<th style="width:12.5%">${t('history.groups')}</th>
<th style="width:12.5%">${t('history.score')}</th>
</tr>
</thead>
<tbody>${history}</tbody>
Expand Down

0 comments on commit 8d3fabc

Please sign in to comment.