Use margin-right instead of spaces after dnssec icon in Query Log

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2025-03-01 01:19:01 -03:00
parent 014b2e8338
commit f6168a4d03

View File

@@ -609,13 +609,13 @@ $(function () {
// Prefix colored DNSSEC icon to domain text
var dnssecIcon = "";
dnssecIcon =
'<i class="fa fa-fw ' +
'<i class="mr-2 fa fa-fw ' +
dnssec.icon +
" " +
dnssec.color +
'" title="DNSSEC: ' +
dnssec.text +
'"></i>&nbsp;&nbsp;';
'"></i>';
// Escape HTML in domain
domain = dnssecIcon + utils.escapeHtml(domain);