Merge branch 'main' of github.com:netbymatt/ws4kp
This commit is contained in:
commit
bfe0b4757d
8 changed files with 17 additions and 8 deletions
|
|
@ -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
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue