ServerConfigurationDialog component

- allows the user to modify localStorage's serverURL
- opens the opportunity for users to have access to a self-hosted version of the application
This commit is contained in:
Oliver Bryan
2026-01-01 02:14:15 +00:00
parent c8784de67e
commit 0860217d99
4 changed files with 193 additions and 2 deletions

View File

@@ -146,3 +146,10 @@
.font-700 {
font-weight: 700;
}
.noselect {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}