neo.mjs 6.28.0 → 6.29.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.
- package/apps/ServiceWorker.mjs +2 -2
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +1 -1
- package/resources/scss/src/apps/portal/home/ContentBox.scss +3 -2
- package/resources/scss/src/apps/portal/home/parts/MainNeo.scss +2 -1
- package/resources/scss/src/apps/portal/learn/MainContainer.scss +8 -0
- package/resources/scss/src/apps/portal/learn/PageSectionsContainer.scss +4 -0
- package/src/DefaultConfig.mjs +2 -2
package/apps/ServiceWorker.mjs
CHANGED
package/package.json
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
.portal-content-box {
|
2
|
-
border
|
2
|
+
border-radius : 3px;
|
3
|
+
box-shadow : 0 3px 6px rgba(0, 0, 0, 0.3);
|
3
4
|
cursor : pointer;
|
4
5
|
color : #000;
|
5
6
|
min-width : 300px;
|
@@ -11,7 +12,7 @@
|
|
11
12
|
}
|
12
13
|
|
13
14
|
.portal-content-box-content {
|
14
|
-
|
15
|
+
padding-left: 1.3em;
|
15
16
|
}
|
16
17
|
|
17
18
|
.portal-content-box-header {
|
package/src/DefaultConfig.mjs
CHANGED
@@ -260,12 +260,12 @@ const DefaultConfig = {
|
|
260
260
|
useVdomWorker: true,
|
261
261
|
/**
|
262
262
|
* buildScripts/injectPackageVersion.mjs will update this value
|
263
|
-
* @default '6.
|
263
|
+
* @default '6.29.0'
|
264
264
|
* @memberOf! module:Neo
|
265
265
|
* @name config.version
|
266
266
|
* @type String
|
267
267
|
*/
|
268
|
-
version: '6.
|
268
|
+
version: '6.29.0'
|
269
269
|
};
|
270
270
|
|
271
271
|
Object.assign(DefaultConfig, {
|