@djangocfg/layouts 2.1.424 → 2.1.426

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@djangocfg/layouts",
3
- "version": "2.1.424",
3
+ "version": "2.1.426",
4
4
  "description": "Simple, straightforward layout components for Next.js - import and use with props",
5
5
  "keywords": [
6
6
  "layouts",
@@ -89,13 +89,13 @@
89
89
  "check": "tsc --noEmit"
90
90
  },
91
91
  "peerDependencies": {
92
- "@djangocfg/api": "^2.1.424",
93
- "@djangocfg/centrifugo": "^2.1.424",
94
- "@djangocfg/debuger": "^2.1.424",
95
- "@djangocfg/i18n": "^2.1.424",
96
- "@djangocfg/monitor": "^2.1.424",
97
- "@djangocfg/ui-core": "^2.1.424",
98
- "@djangocfg/ui-nextjs": "^2.1.424",
92
+ "@djangocfg/api": "^2.1.426",
93
+ "@djangocfg/centrifugo": "^2.1.426",
94
+ "@djangocfg/debuger": "^2.1.426",
95
+ "@djangocfg/i18n": "^2.1.426",
96
+ "@djangocfg/monitor": "^2.1.426",
97
+ "@djangocfg/ui-core": "^2.1.426",
98
+ "@djangocfg/ui-nextjs": "^2.1.426",
99
99
  "@hookform/resolvers": "^5.2.2",
100
100
  "consola": "^3.4.2",
101
101
  "lucide-react": "^0.545.0",
@@ -126,15 +126,15 @@
126
126
  "uuid": "^11.1.0"
127
127
  },
128
128
  "devDependencies": {
129
- "@djangocfg/api": "^2.1.424",
130
- "@djangocfg/centrifugo": "^2.1.424",
131
- "@djangocfg/debuger": "^2.1.424",
132
- "@djangocfg/i18n": "^2.1.424",
133
- "@djangocfg/monitor": "^2.1.424",
134
- "@djangocfg/typescript-config": "^2.1.424",
135
- "@djangocfg/ui-core": "^2.1.424",
136
- "@djangocfg/ui-nextjs": "^2.1.424",
137
- "@djangocfg/ui-tools": "^2.1.424",
129
+ "@djangocfg/api": "^2.1.426",
130
+ "@djangocfg/centrifugo": "^2.1.426",
131
+ "@djangocfg/debuger": "^2.1.426",
132
+ "@djangocfg/i18n": "^2.1.426",
133
+ "@djangocfg/monitor": "^2.1.426",
134
+ "@djangocfg/typescript-config": "^2.1.426",
135
+ "@djangocfg/ui-core": "^2.1.426",
136
+ "@djangocfg/ui-nextjs": "^2.1.426",
137
+ "@djangocfg/ui-tools": "^2.1.426",
138
138
  "@types/node": "^25.2.3",
139
139
  "@types/react": "^19.2.15",
140
140
  "@types/react-dom": "^19.2.3",
@@ -124,18 +124,27 @@
124
124
  inset: 0;
125
125
  z-index: 1;
126
126
  pointer-events: none;
127
- /* Soft shadow rising from the bottom: deep under the quote, easing to
128
- nothing by the upper third so the photo stays open and bright up top.
129
- The eased multi-stop curve avoids a hard "band" edge reads as a
130
- natural vignette, not a flat overlay. */
131
- background: linear-gradient(
132
- to top,
133
- hsl(0 0% 0% / 0.78) 0%,
134
- hsl(0 0% 0% / 0.55) 18%,
135
- hsl(0 0% 0% / 0.28) 38%,
136
- hsl(0 0% 0% / 0.08) 60%,
137
- transparent 80%
138
- );
127
+ /* Two stacked scrims:
128
+ 1. A strong shadow rising from the bottom (deep under the quote, easing
129
+ to nothing by the upper third) the main legibility layer.
130
+ 2. A faint shadow falling from the top so the brand mark stays readable
131
+ even over a bright sky. Kept light so the photo stays open.
132
+ Eased multi-stop curves avoid a hard "band" edge — natural vignette. */
133
+ background:
134
+ linear-gradient(
135
+ to top,
136
+ hsl(0 0% 0% / 0.78) 0%,
137
+ hsl(0 0% 0% / 0.55) 18%,
138
+ hsl(0 0% 0% / 0.28) 38%,
139
+ hsl(0 0% 0% / 0.08) 60%,
140
+ transparent 80%
141
+ ),
142
+ linear-gradient(
143
+ to bottom,
144
+ hsl(0 0% 0% / 0.32) 0%,
145
+ hsl(0 0% 0% / 0.12) 12%,
146
+ transparent 26%
147
+ );
139
148
  }
140
149
 
141
150
  /* Sidebar sits above the scrim. */