@loafmarkets/ui 0.1.74 → 0.1.76

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
@@ -2664,7 +2664,7 @@ var PropertyTour = React5.forwardRef(
2664
2664
  }
2665
2665
  );
2666
2666
  PropertyTour.displayName = "PropertyTour";
2667
- var ITEMS_PER_PAGE = 4;
2667
+ var ITEMS_PER_PAGE = 5;
2668
2668
  var ensureAnimationsInjected = () => {
2669
2669
  if (typeof document === "undefined") return;
2670
2670
  if (document.getElementById("property-news-updates-animations")) return;
@@ -2992,7 +2992,7 @@ var PropertyNewsUpdates = React5.forwardRef(
2992
2992
  style: {
2993
2993
  width: "100%",
2994
2994
  textAlign: "left",
2995
- background: "transparent",
2995
+ backgroundColor: "transparent",
2996
2996
  border: "none",
2997
2997
  cursor: "pointer",
2998
2998
  padding: "0.75rem 0",
@@ -3005,7 +3005,7 @@ var PropertyNewsUpdates = React5.forwardRef(
3005
3005
  transition: "background-color 0.15s"
3006
3006
  },
3007
3007
  onMouseEnter: (e) => {
3008
- e.currentTarget.style.backgroundColor = "rgba(255,255,255,0.02)";
3008
+ e.currentTarget.style.backgroundColor = "rgba(255,255,255,0.04)";
3009
3009
  const title = e.currentTarget.querySelector("h3");
3010
3010
  if (title) title.style.color = "var(--color-accent, #E6C87E)";
3011
3011
  },