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: ![Screenshot_from_2021-11-07_14-58-41](/uploads/74c16990711a35013871ac5f036474d3/Screenshot_from_2021-11-07_14-58-41.png) 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