@dahawa/hawa-code 1.42.3 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/cli.js +388 -388
  2. package/hands.js +269 -269
  3. package/package.json +1 -1
  4. package/webServer/style.css +14 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dahawa/hawa-code",
3
- "version": "1.42.3",
3
+ "version": "2.0.0",
4
4
  "bin": {
5
5
  "hcode": "hawa.js"
6
6
  },
@@ -903,10 +903,21 @@ html, body {
903
903
  }
904
904
 
905
905
  .setting-row {
906
- display: flex;
906
+ display: grid;
907
+ grid-template-columns: minmax(120px, 160px) 1fr;
907
908
  align-items: center;
908
- justify-content: space-between;
909
- gap: 16px;
909
+ gap: 12px;
910
+ }
911
+
912
+ .setting-row > *:last-child {
913
+ justify-self: start;
914
+ }
915
+
916
+ .setting-row > .setting-input,
917
+ .setting-row > .setting-select {
918
+ width: 100%;
919
+ min-width: 0;
920
+ justify-self: stretch;
910
921
  }
911
922
 
912
923
  .setting-key {