This commit is contained in:
Judah 2026-04-01 19:50:09 -06:00
parent 06a298678d
commit 3bb5386aff
2 changed files with 40 additions and 23 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.DS_Store .DS_Store
*lock* *lock*
*.tmp

View file

@ -73,33 +73,49 @@
"Passive" "Passive"
], ],
"layout": { "layout": {
"direction": "row", "direction": "column",
"isSymetricalForOpponents": false, "isSymetricalForOpponents": true,
"content": [ "content": [
{ {
"section": "Red", "direction": "row",
"style": { "style": false,
"color": "#F8788F" "content": [
} {
"section": "Red",
"style": {
"color": "#F8788F"
}
},
{
"section": "Green",
"style": {
"color": "#78F8B2"
}
},
{
"section": "Blue",
"style": {
"color": "#78BEF8"
}
}
],
"isSymetricalForOpponents": false
}, },
{ {
"section": "Green", "direction": "column",
"style": { "style": {
"color": "#78F8B2" "width": "25vh",
} "margin": "0 auto"
}, },
{ "content": [
"section": "Blue", {
"style": { "section": "Passive",
"color": "#78BEF8" "style": {
} "color": "#B8B8B8"
}, }
{ }
"section": "Passive", ],
"style": { "isSymetricalForOpponents": false
"color": "#B8B8B8",
"width": "50%"
}
} }
] ]
}, },