Skip to content

Commit b0575e9

Browse files
Fix variable names and default values
1 parent 1fff05b commit b0575e9

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

public/widget.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
overflow: hidden;
55
}
66

7+
.main-container {
8+
/* width: 500px; */
9+
height: 100%;
10+
}
11+
712
.icon-follow {
813
width: 100%;
914
height: 100%;
@@ -21,11 +26,11 @@
2126
}
2227

2328
.path-follow {
24-
stroke: {{followColor}};
29+
stroke: {{colorFollow}};
2530
}
2631

2732
.path-sub {
28-
stroke: {{subColor}};
33+
stroke: {{colorSub}};
2934
}
3035

3136

public/widget.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"includeRedemptions": {
3131
"type": "dropdown",
3232
"label": "Display redemptions:",
33-
"value": "yes",
33+
"value": "no",
3434
"options": {
3535
"yes": "Yes",
3636
"no": "No"
@@ -39,7 +39,7 @@
3939
"includeHosts": {
4040
"type": "dropdown",
4141
"label": "Display hosts:",
42-
"value": "yes",
42+
"value": "no",
4343
"options": {
4444
"yes": "Yes",
4545
"no": "No"
@@ -48,7 +48,7 @@
4848
"includeRaids": {
4949
"type": "dropdown",
5050
"label": "Display raids:",
51-
"value": "yes",
51+
"value": "no",
5252
"options": {
5353
"yes": "Yes",
5454
"no": "No"
@@ -57,7 +57,7 @@
5757
"includeTips": {
5858
"type": "dropdown",
5959
"label": "Display tips:",
60-
"value": "yes",
60+
"value": "no",
6161
"options": {
6262
"yes": "Yes",
6363
"no": "No"
@@ -66,7 +66,7 @@
6666
"includeCheers": {
6767
"type": "dropdown",
6868
"label": "Display cheers:",
69-
"value": "yes",
69+
"value": "no",
7070
"options": {
7171
"yes": "Yes",
7272
"no": "No"

src/css/main.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:root {
2-
--followColor: #1956c6;
3-
--subColor: #673AB7;
2+
--colorFollow: #1956c6;
3+
--colorSub: #673AB7;
44
}
55

66
* {
@@ -32,11 +32,11 @@
3232
}
3333

3434
.path-follow {
35-
stroke: var(--followColor);
35+
stroke: var(--colorFollow);
3636
}
3737

3838
.path-sub {
39-
stroke: var(--subColor);
39+
stroke: var(--colorSub);
4040
}
4141

4242

src/fields.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"includeRedemptions": {
3131
"type": "dropdown",
3232
"label": "Display redemptions:",
33-
"value": "yes",
33+
"value": "no",
3434
"options": {
3535
"yes": "Yes",
3636
"no": "No"
@@ -39,7 +39,7 @@
3939
"includeHosts": {
4040
"type": "dropdown",
4141
"label": "Display hosts:",
42-
"value": "yes",
42+
"value": "no",
4343
"options": {
4444
"yes": "Yes",
4545
"no": "No"
@@ -48,7 +48,7 @@
4848
"includeRaids": {
4949
"type": "dropdown",
5050
"label": "Display raids:",
51-
"value": "yes",
51+
"value": "no",
5252
"options": {
5353
"yes": "Yes",
5454
"no": "No"
@@ -57,7 +57,7 @@
5757
"includeTips": {
5858
"type": "dropdown",
5959
"label": "Display tips:",
60-
"value": "yes",
60+
"value": "no",
6161
"options": {
6262
"yes": "Yes",
6363
"no": "No"
@@ -66,7 +66,7 @@
6666
"includeCheers": {
6767
"type": "dropdown",
6868
"label": "Display cheers:",
69-
"value": "yes",
69+
"value": "no",
7070
"options": {
7171
"yes": "Yes",
7272
"no": "No"

0 commit comments

Comments
 (0)