@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.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,15 @@ 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
|
+
padding: 0 clamp(1rem, 2vw, 2rem);
|
|
8898
|
+
box-sizing: border-box;
|
|
8899
|
+
max-width: 100vw;
|
|
8900
|
+
`;
|
|
8892
8901
|
var Section = styled9__default.default.div`
|
|
8893
8902
|
background: #111;
|
|
8894
8903
|
border-radius: 12px;
|