summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/disk_inspector.html
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-09-03 09:32:37 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-09-03 09:52:26 +0200
commitc1ac88e47c8562699edc9f5304649762366191e0 (patch)
tree2e7c0f970e603652805c900cbf656d92b86ec55e /ogcp/templates/disk_inspector.html
parent15f5af00e73bac87d329d47de257cad50a591b06 (diff)
templates: fix ip card list spacing
Remove unwanted witespace caused by tabs and spaces. Add margin to the ip card style to define an explicit spacing.
Diffstat (limited to 'ogcp/templates/disk_inspector.html')
-rw-r--r--ogcp/templates/disk_inspector.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/disk_inspector.html b/ogcp/templates/disk_inspector.html
index 0b9ab4f..2f19ad2 100644
--- a/ogcp/templates/disk_inspector.html
+++ b/ogcp/templates/disk_inspector.html
@@ -308,7 +308,7 @@
missingClientsText = "<p>{{ _('Clients missing the target disk:') }}</p>";
}
for (const c of excludedClientDisks[selectedDisk]) {
- missingClientsText += '<div class="card d-inline-block" style="padding: 5px;">' + c + '</div>';
+ missingClientsText += '<div class="card d-inline-block" style="padding: 5px; margin: 3px;">' + c + '</div>';
}
$('#clientWarningMsg').html(missingClientsText);
{% endif %}