juxscript 1.0.61 → 1.0.62
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jux } from 'juxscript';
|
|
2
2
|
|
|
3
3
|
// Import the layout styles - testing link.
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
|
|
6
6
|
// ═══════════════════════════════════════════════════════════════════
|
|
7
7
|
// GRID LAYOUT - INITIALIZATION FUNCTION
|
|
@@ -9,6 +9,8 @@ jux.include('layout.css');
|
|
|
9
9
|
// Note: #app is automatically created by the Jux compiler
|
|
10
10
|
|
|
11
11
|
export function initializeGrid() {
|
|
12
|
+
// add the base jux styles
|
|
13
|
+
jux.include('style.css');
|
|
12
14
|
// Header area
|
|
13
15
|
const appHeader = jux.container('appheader').render('#app');
|
|
14
16
|
const appHeaderContent = jux.container('appheader-content').render('#appheader');
|
|
File without changes
|