@loafmarkets/ui 0.1.257 → 0.1.259

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
@@ -14884,15 +14884,14 @@ function PropertyBuy({
14884
14884
  }
14885
14885
  }
14886
14886
  ),
14887
- /* @__PURE__ */ jsx(
14887
+ /* @__PURE__ */ jsx("div", { style: { minWidth: 0, overflow: "hidden" }, children: /* @__PURE__ */ jsx(
14888
14888
  PropertyTour,
14889
14889
  {
14890
14890
  title: propertyName,
14891
14891
  src: "/properties/Musgrave/musgrave.mp4",
14892
- className: "h-full !max-w-none",
14893
- style: { maxWidth: "none", width: "100%", height: "100%" }
14892
+ style: { maxWidth: "none", width: "100%", height: "100%", borderRadius: "8px" }
14894
14893
  }
14895
- )
14894
+ ) })
14896
14895
  ] }),
14897
14896
  /* @__PURE__ */ jsx(
14898
14897
  OrderConfirmationModal,
@@ -14999,24 +14998,42 @@ var ActivityWrapper = styled9.div`
14999
14998
  }
15000
14999
  `;
15001
15000
  var NewsVideoRow = styled9.div`
15002
- display: grid;
15003
- grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
15001
+ display: flex;
15004
15002
  gap: 1.5rem;
15005
15003
  margin-top: 1.5rem;
15006
15004
  max-width: 1800px;
15007
15005
  margin-left: auto;
15008
15006
  margin-right: auto;
15009
15007
  height: 700px;
15010
- overflow: hidden;
15011
- @media (max-width: 1024px) {
15012
- grid-template-columns: 1fr;
15013
- height: auto;
15014
- gap: 1rem;
15008
+
15009
+ & > *:first-child {
15010
+ flex: 0 0 420px;
15011
+ min-width: 0;
15012
+ overflow: hidden;
15015
15013
  }
15016
- & > * {
15014
+
15015
+ & > *:last-child {
15016
+ flex: 1 1 0;
15017
15017
  min-width: 0;
15018
15018
  overflow: hidden;
15019
15019
  }
15020
+
15021
+ @media (max-width: 1024px) {
15022
+ flex-direction: column;
15023
+ height: auto;
15024
+ gap: 1rem;
15025
+
15026
+ & > *:first-child {
15027
+ flex: none;
15028
+ width: 100%;
15029
+ }
15030
+
15031
+ & > *:last-child {
15032
+ flex: none;
15033
+ width: 100%;
15034
+ min-height: 400px;
15035
+ }
15036
+ }
15020
15037
  `;
15021
15038
  var PaymentOption = styled9.div`
15022
15039
  display: flex;