@things-factory/shell 6.0.0-alpha.13 → 6.0.0-alpha.20

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.
package/README.md CHANGED
@@ -31,7 +31,7 @@ Things-Factory is an environment to develop mobile-oriented apps.
31
31
  - The components provide independent (atomic) functionality.
32
32
  - The component excludes dependencies on the application in order to maintain implementation independence.
33
33
  - Style maintains its independence by using css variables.
34
- - Multilinguals maintain independence by using i18n-msg components. (Only have dependencies on i18n-msg.)
34
+ - Multilinguals maintain independence by using ox-i18n components. (Only have dependencies on ox-i18n.)
35
35
  - The component does not have a premise for the layout (display, position) of the host (container) to which it will be used.
36
36
  - page, layouts are connected to redux.
37
37
  - Components do not connect to redux, but they work with pages through properties.
package/_index.html CHANGED
@@ -57,10 +57,14 @@
57
57
  padding: 0;
58
58
  overflow: hidden;
59
59
 
60
+ overscroll-behavior-y: none;
61
+
60
62
  /* This is a font-stack that tries to use the system-default sans-serifs first */
61
63
  font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
62
64
  line-height: 1.5;
63
65
  -webkit-font-smoothing: antialiased;
66
+
67
+ accent-color: var(--primary-color);
64
68
  }
65
69
  </style>
66
70