juxscript 1.0.117 → 1.0.119

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.
@@ -195,3 +195,67 @@ button, input, select, textarea {
195
195
  font-family: inherit;
196
196
  font-size: inherit;
197
197
  }
198
+
199
+ .jux-btn-primary:hover {
200
+ transform: translateY(-2px);
201
+ background-color: var(--color-brand-contrast);
202
+ }
203
+
204
+ /* --- Global Layout Container --- */
205
+
206
+ #jux-layout {
207
+ position: fixed;
208
+ inset: 0;
209
+ width: 100vw;
210
+ height: 100vh;
211
+ margin: 0;
212
+ padding: 0;
213
+ overflow: hidden;
214
+ display: flex;
215
+ flex-direction: column;
216
+ background-color: var(--color-background);
217
+ }
218
+
219
+ #jux-layout > #app {
220
+ flex: 1;
221
+ width: 100%;
222
+ height: 100%;
223
+ overflow-y: auto;
224
+ overflow-x: hidden;
225
+ position: relative;
226
+ /* Ensure child layouts can take full height */
227
+ display: flex;
228
+ flex-direction: column;
229
+ }
230
+
231
+ /* --- Layout Regions --- */
232
+
233
+ .layout-header {
234
+ background-color: var(--color-surface-base);
235
+ border-bottom: 1px solid var(--color-border);
236
+ /* Horizontal alignment usually handled by inner grid/flex, vertical centering is safe default here */
237
+ justify-content: center;
238
+ z-index: 50;
239
+ }
240
+
241
+ .layout-hero {
242
+ background-color: var(--color-background-alt);
243
+ position: relative;
244
+ /* Often the hero cell itself centers its children */
245
+ align-items: center;
246
+ justify-content: center;
247
+ }
248
+
249
+ .layout-features {
250
+ background-color: var(--color-background);
251
+ /* Ensure content doesn't just jam against edges if inner wrapper misses padding */
252
+ position: relative;
253
+ }
254
+
255
+ .layout-footer {
256
+ background-color: var(--color-background-inverse);
257
+ color: var(--color-text-secondary);
258
+ border-top: 1px solid var(--color-border);
259
+ align-items: center;
260
+ justify-content: center;
261
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.0.117",
3
+ "version": "1.0.119",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./index.js",