@loafmarkets/ui 0.1.156 → 0.1.157
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 +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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,15 @@ 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
|
+
padding: 0 clamp(1rem, 2vw, 2rem);
|
|
8872
|
+
box-sizing: border-box;
|
|
8873
|
+
max-width: 100vw;
|
|
8874
|
+
`;
|
|
8866
8875
|
var Section = styled9.div`
|
|
8867
8876
|
background: #111;
|
|
8868
8877
|
border-radius: 12px;
|