Minor Refinements to Colours

This commit is contained in:
2026-02-17 18:50:18 +02:00
parent 9c953d5ade
commit b061b7ab9d
11 changed files with 20 additions and 18 deletions

View File

@@ -135,14 +135,14 @@ export default function DeviceDetail() {
<button
onClick={() => navigate(`/devices/${id}/edit`)}
className="px-4 py-2 text-sm rounded-md transition-colors"
style={{ backgroundColor: "var(--btn-primary)", color: "var(--text-heading)" }}
style={{ backgroundColor: "var(--text-link)", color: "var(--text-white)" }}
>
Edit
</button>
<button
onClick={() => setShowDelete(true)}
className="px-4 py-2 text-sm rounded-md transition-colors"
style={{ backgroundColor: "var(--danger-btn)", color: "#fff" }}
style={{ backgroundColor: "var(--danger)", color: "var(--text-white)" }}
>
Delete
</button>