@digilogiclabs/saas-factory-ui 1.30.3 → 1.31.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/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/dist/web/index.js +6 -1
- package/dist/web/index.js.map +1 -1
- package/dist/web/index.mjs +6 -1
- package/dist/web/index.mjs.map +1 -1
- package/package.json +17 -17
package/dist/index.js
CHANGED
|
@@ -34938,7 +34938,12 @@ function DynamicHeroBanner({
|
|
|
34938
34938
|
justifyContent: "center",
|
|
34939
34939
|
padding: "0 clamp(24px,6vw,120px)",
|
|
34940
34940
|
paddingBottom: statsPosition === "bottom-bar" && activeStats ? "clamp(100px,14vw,140px)" : void 0,
|
|
34941
|
-
|
|
34941
|
+
// Side padding grows up to 120px each side; if the max-width is
|
|
34942
|
+
// capped tightly the inner content area paradoxically *shrinks*
|
|
34943
|
+
// at xl+, which forced 4-stat rows to wrap on wide screens.
|
|
34944
|
+
// Floor preserves md/lg behavior, ceiling lets xl+ absorb the
|
|
34945
|
+
// padding so single-row stat layouts stay single-row.
|
|
34946
|
+
maxWidth: contentAlign === "center" ? "clamp(940px, 80vw, 1180px)" : "clamp(800px, 70vw, 1040px)",
|
|
34942
34947
|
margin: contentAlign === "center" ? "0 auto" : contentAlign === "right" ? "0 0 0 auto" : "0",
|
|
34943
34948
|
textAlign: contentAlign,
|
|
34944
34949
|
pointerEvents: "none"
|