Continued work on formula wizard

Update strings.json, code.js, and 4 more files...
This commit is contained in:
2023-08-05 19:04:27 +02:00
parent 4cf950b5dd
commit 2dd262fe2c
6 changed files with 219 additions and 37 deletions

View File

@@ -19,3 +19,26 @@
.fw-workbench-name {
border-bottom: 1px solid;
}
.fw-workbench-io-grid {
display: grid;
grid-template-columns: 33% 33% 33%;
grid-template-rows: auto;
gap: 0 0;
grid-template-areas: ". . .";
}
/* Thin desktop */
@media only screen and (max-width: 992px) {
.fw-workbench-io-grid {
grid-template-columns: 50% 50%;
grid-template-areas: ". .";
}
}
/* Mobile */
@media only screen and (max-width: 768px) {
.fw-workbench-io-grid {
grid-template-columns: 100%;
grid-template-areas: ".";
}
}