@verma-consulting/design-library 0.1.60 → 0.1.62

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.mjs CHANGED
@@ -332,10 +332,12 @@ var Logo = memo(
332
332
  onClick: handleClick,
333
333
  sx: {
334
334
  cursor: "pointer",
335
- alignItems: "stretch",
335
+ alignItems: "center",
336
336
  width: "100%",
337
337
  maxWidth,
338
- minWidth: 0
338
+ minWidth: 0,
339
+ mx: "auto",
340
+ "&:hover": { opacity: 0.9, transition: "opacity 0.2s ease-in-out" }
339
341
  },
340
342
  children: [
341
343
  (logoUrl || defaultLogo) && /* @__PURE__ */ jsx3(
@@ -1813,6 +1815,9 @@ var FormDrawer = ({
1813
1815
  flex: 1,
1814
1816
  minHeight: 0,
1815
1817
  overflow: "auto",
1818
+ overscrollBehavior: "contain",
1819
+ contain: "layout style",
1820
+ WebkitOverflowScrolling: "touch",
1816
1821
  p: 3,
1817
1822
  bgcolor: "background.paper"
1818
1823
  },