Skip to content

Commit 86210b2

Browse files
authored
Use margin-right instead of spaces after dnssec icon in Query Log (#3267)
2 parents ef74db8 + f6168a4 commit 86210b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/js/queries.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,13 +609,13 @@ $(function () {
609609
// Prefix colored DNSSEC icon to domain text
610610
var dnssecIcon = "";
611611
dnssecIcon =
612-
'<i class="fa fa-fw ' +
612+
'<i class="mr-2 fa fa-fw ' +
613613
dnssec.icon +
614614
" " +
615615
dnssec.color +
616616
'" title="DNSSEC: ' +
617617
dnssec.text +
618-
'"></i>&nbsp;&nbsp;';
618+
'"></i>';
619619

620620
// Escape HTML in domain
621621
domain = dnssecIcon + utils.escapeHtml(domain);

0 commit comments

Comments
 (0)