@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.mjs CHANGED
@@ -8622,7 +8622,7 @@ function PropertyOverview({
8622
8622
  onClose: () => setShowDividendHistory(false)
8623
8623
  }
8624
8624
  ),
8625
- galleryImages.length > 0 && /* @__PURE__ */ jsx(
8625
+ galleryImages.length > 0 && /* @__PURE__ */ jsx(GalleryBreakout, { children: /* @__PURE__ */ jsx(
8626
8626
  GalleryMapSection,
8627
8627
  {
8628
8628
  images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
@@ -8632,7 +8632,7 @@ function PropertyOverview({
8632
8632
  tokenName,
8633
8633
  onPhotoClick: onPhotosClick
8634
8634
  }
8635
- ),
8635
+ ) }),
8636
8636
  /* @__PURE__ */ jsxs(Section, { children: [
8637
8637
  /* @__PURE__ */ jsx(SectionHeader, { children: "Asset Details" }),
8638
8638
  /* @__PURE__ */ jsxs(AssetPanelsGrid, { children: [
@@ -8863,6 +8863,20 @@ var Wrapper = styled9.div`
8863
8863
  flex-direction: column;
8864
8864
  gap: 1.5rem;
8865
8865
  `;
8866
+ var GalleryBreakout = styled9.div`
8867
+ width: 100vw;
8868
+ position: relative;
8869
+ left: 50%;
8870
+ margin-left: -50vw;
8871
+ display: flex;
8872
+ justify-content: center;
8873
+ > * {
8874
+ width: 100%;
8875
+ max-width: 1800px;
8876
+ padding: 0 clamp(1rem, 2vw, 2rem);
8877
+ box-sizing: border-box;
8878
+ }
8879
+ `;
8866
8880
  var Section = styled9.div`
8867
8881
  background: #111;
8868
8882
  border-radius: 12px;