web: replace spaces after icons with nbsp

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-04-04 18:58:52 +02:00
parent d4982b276c
commit e2f01ce740
18 changed files with 205 additions and 155 deletions

View File

@ -199,7 +199,7 @@ export abstract class Table<T> extends LitElement {
this.expandedRows[idx] = !this.expandedRows[idx];
this.requestUpdate();
}}>
<div class="pf-c-table__toggle-icon"> <i class="fas fa-angle-down" aria-hidden="true"></i> </div>
<div class="pf-c-table__toggle-icon">&nbsp;<i class="fas fa-angle-down" aria-hidden="true"></i>&nbsp;</div>
</button>
</td>` : html``}
${this.row(item).map((col) => {