Merge branch 'main' of github.com:netbymatt/ws4kp

This commit is contained in:
Matt Walsh
2025-06-12 09:30:38 -05:00
8 changed files with 17 additions and 8 deletions

View File

@@ -38,6 +38,9 @@ class Setting {
if (this.type === 'checkbox' && urlValue !== undefined) {
urlState = urlValue === 'true';
}
if (this.type === 'boolean' && urlValue !== undefined) {
urlState = urlValue === 'true';
}
if (this.type === 'select' && urlValue !== undefined) {
urlState = parseFloat(urlValue);
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -22,9 +22,10 @@
&.right {
right: 0px;
font-family: 'Star4000 Large';
font-size: 16pt;
font-family: "Star4000 Large";
font-size: 20px;
font-weight: bold;
line-height: 24px;
.row {
margin-bottom: 12px;