Show orange border when input has changes

Even if it's on focus.
This commit is contained in:
David Rodríguez
2025-11-04 11:32:39 +01:00
parent e990e5ffd5
commit 186fe0503f

View File

@@ -9,6 +9,10 @@ input,
div {
&.update-pending {
border: solid 1px orange;
&:focus {
border: solid 1px orange;
}
}
}