Migrate to Postgresql for better network handling. Add more user functionality.

This commit is contained in:
Dan Milne
2025-11-06 14:08:39 +11:00
parent 85252a1a07
commit fc567f0b91
69 changed files with 4266 additions and 952 deletions

View File

@@ -8,3 +8,26 @@
*
* Consider organizing styles into separate files for maintainability.
*/
/* JSON Validator Styles */
.json-valid {
border-color: #10b981 !important;
box-shadow: 0 0 0 1px #10b981 !important;
}
.json-invalid {
border-color: #ef4444 !important;
box-shadow: 0 0 0 1px #ef4444 !important;
}
.json-valid-status {
color: #10b981;
font-size: 0.875rem;
font-weight: 500;
}
.json-invalid-status {
color: #ef4444;
font-size: 0.875rem;
font-weight: 500;
}