feat: Change node border colours for warnings and errors
All checks were successful
Build Docker / BuildImage (push) Successful in 50s

This commit is contained in:
2024-09-13 10:44:52 +10:00
parent 8a43526aab
commit 809a4f9d04
3 changed files with 18 additions and 2 deletions

View File

@@ -21,4 +21,10 @@
}
.node-info > p{
margin: 0;
}
}
.node.warning {
border-color: #FFA500;
}
.node.error {
border-color: #FF0000;
}

View File

@@ -97,7 +97,7 @@
</div>
<div class="spacer"></div>
{% for node in nodes %}
<div class="node">
<div class="node {{node.class}}">
<div>
<h2>{{node.location}}</h2>
</div>