@loafmarkets/ui 0.1.156 → 0.1.158

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 CHANGED
@@ -8648,7 +8648,7 @@ function PropertyOverview({
8648
8648
  onClose: () => setShowDividendHistory(false)
8649
8649
  }
8650
8650
  ),
8651
- galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(
8651
+ galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(GalleryBreakout, { children: /* @__PURE__ */ jsxRuntime.jsx(
8652
8652
  GalleryMapSection,
8653
8653
  {
8654
8654
  images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
@@ -8658,7 +8658,7 @@ function PropertyOverview({
8658
8658
  tokenName,
8659
8659
  onPhotoClick: onPhotosClick
8660
8660
  }
8661
- ),
8661
+ ) }),
8662
8662
  /* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
8663
8663
  /* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "Asset Details" }),
8664
8664
  /* @__PURE__ */ jsxRuntime.jsxs(AssetPanelsGrid, { children: [
@@ -8889,6 +8889,20 @@ var Wrapper = styled9__default.default.div`
8889
8889
  flex-direction: column;
8890
8890
  gap: 1.5rem;
8891
8891
  `;
8892
+ var GalleryBreakout = styled9__default.default.div`
8893
+ width: 100vw;
8894
+ position: relative;
8895
+ left: 50%;
8896
+ margin-left: -50vw;
8897
+ display: flex;
8898
+ justify-content: center;
8899
+ > * {
8900
+ width: 100%;
8901
+ max-width: 1800px;
8902
+ padding: 0 clamp(1rem, 2vw, 2rem);
8903
+ box-sizing: border-box;
8904
+ }
8905
+ `;
8892
8906
  var Section = styled9__default.default.div`
8893
8907
  background: #111;
8894
8908
  border-radius: 12px;