@stacksjs/defaults 0.70.83 → 0.70.85
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,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/defaults",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"
|
|
4
|
+
"sideEffects": false,
|
|
5
|
+
"version": "0.70.85",
|
|
5
6
|
"description": "Default Stacks scaffold resources (views, layouts, components, preloader) — shipped so apps consuming the framework from node_modules get the same fallback resources a vendored checkout provides. Source of truth: storage/framework/defaults.",
|
|
6
7
|
"author": "Chris Breuer",
|
|
7
8
|
"license": "MIT",
|
|
Binary file
|
|
@@ -185,7 +185,7 @@ const GRID_OFFSET = 20 // offset from edge
|
|
|
185
185
|
|
|
186
186
|
// Background images collection
|
|
187
187
|
const BACKGROUND_IMAGES = [
|
|
188
|
-
'bg-img.
|
|
188
|
+
'bg-img.jpg', // Original
|
|
189
189
|
'https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80', // Mountain landscape
|
|
190
190
|
'https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80', // Mountain peaks
|
|
191
191
|
'https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1920&q=80', // Foggy forest
|
|
@@ -299,7 +299,7 @@ body {
|
|
|
299
299
|
.desktop {
|
|
300
300
|
width: 100%;
|
|
301
301
|
height: 100%;
|
|
302
|
-
background-image: url('/assets/images/bg-img.
|
|
302
|
+
background-image: url('/assets/images/bg-img.jpg');
|
|
303
303
|
background-size: cover;
|
|
304
304
|
background-position: center;
|
|
305
305
|
background-repeat: no-repeat;
|
|
Binary file
|