@attabot/product-app 1.0.28 → 1.0.30
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/product-app.js
CHANGED
|
@@ -7452,7 +7452,7 @@ function Mn() {
|
|
|
7452
7452
|
flexDirection: "column",
|
|
7453
7453
|
alignItems: "center",
|
|
7454
7454
|
justifyContent: "center",
|
|
7455
|
-
minHeight: { xs:
|
|
7455
|
+
minHeight: { xs: 320, sm: 380, md: 440 },
|
|
7456
7456
|
bgcolor: "#fff",
|
|
7457
7457
|
mx: { xs: 0, sm: 4, md: 8 },
|
|
7458
7458
|
py: { xs: 6, md: 8 },
|
|
@@ -8511,7 +8511,9 @@ function Mn() {
|
|
|
8511
8511
|
// CategoryDetails.jsx – main content wrapper (below TopBar)
|
|
8512
8512
|
// -------------------------------------------------------------------------
|
|
8513
8513
|
contentWrapper: {
|
|
8514
|
-
|
|
8514
|
+
// Spacer so fixed TopBar (72px tall) does not
|
|
8515
|
+
// overlap the dashboard cards/table content.
|
|
8516
|
+
marginTop: 8,
|
|
8515
8517
|
position: "relative",
|
|
8516
8518
|
zIndex: 0,
|
|
8517
8519
|
width: "100%",
|
|
@@ -33259,13 +33261,13 @@ const oy = ({
|
|
|
33259
33261
|
{
|
|
33260
33262
|
sx: {
|
|
33261
33263
|
...Ce.root,
|
|
33264
|
+
// Fixed so it always stays at the top of the viewport
|
|
33265
|
+
// while the page scrolls. It spans the full width so
|
|
33266
|
+
// the background aligns with the layout shell.
|
|
33262
33267
|
position: "fixed",
|
|
33263
33268
|
top: 0,
|
|
33264
33269
|
left: 0,
|
|
33265
33270
|
right: 0,
|
|
33266
|
-
display: "flex",
|
|
33267
|
-
flexDirection: "column",
|
|
33268
|
-
alignItems: "center",
|
|
33269
33271
|
width: "100%",
|
|
33270
33272
|
height: 72,
|
|
33271
33273
|
minHeight: 72,
|
|
@@ -33274,8 +33276,8 @@ const oy = ({
|
|
|
33274
33276
|
paddingBottom: 0,
|
|
33275
33277
|
gap: "16px",
|
|
33276
33278
|
boxSizing: "border-box",
|
|
33277
|
-
overflow: "
|
|
33278
|
-
zIndex:
|
|
33279
|
+
overflow: "visible",
|
|
33280
|
+
zIndex: 1100
|
|
33279
33281
|
},
|
|
33280
33282
|
children: /* @__PURE__ */ u(
|
|
33281
33283
|
lr,
|
|
@@ -33285,8 +33287,9 @@ const oy = ({
|
|
|
33285
33287
|
sx: {
|
|
33286
33288
|
width: "100%",
|
|
33287
33289
|
display: "flex",
|
|
33288
|
-
justifyContent: "
|
|
33289
|
-
boxSizing: "border-box"
|
|
33290
|
+
justifyContent: "flex-start",
|
|
33291
|
+
boxSizing: "border-box",
|
|
33292
|
+
px: { xs: 1, sm: 2, md: 4 }
|
|
33290
33293
|
},
|
|
33291
33294
|
children: /* @__PURE__ */ P(O, { sx: {
|
|
33292
33295
|
...Ce.inner,
|