Error in vertical alignment table titles
The names of the players are shown a little higher than the titles '# , and 'note', as can be seen on this screenshot:

The titles should be aligned properly.
Here's the html (simplified), from `_namesLine.html.twig`:
```html
<tr>
<th>*</th>
<th>#</th>
<th>
one
<span >
<button type="button" class="btn btn-link btn-sm">
<i class="delete-icon fa fa-trash-o"></i>
</button>
</span>
<i class="fa fa-square draggable-handle"></i>
</th>
<th>
noot
</th>
</tr>
```
The delete button pushes the 'one' label up. Not sure how I best fix this.
issue