@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.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2690,7 +2690,7 @@ var PropertyTour = React5__namespace.forwardRef(
|
|
|
2690
2690
|
}
|
|
2691
2691
|
);
|
|
2692
2692
|
PropertyTour.displayName = "PropertyTour";
|
|
2693
|
-
var ITEMS_PER_PAGE =
|
|
2693
|
+
var ITEMS_PER_PAGE = 5;
|
|
2694
2694
|
var ensureAnimationsInjected = () => {
|
|
2695
2695
|
if (typeof document === "undefined") return;
|
|
2696
2696
|
if (document.getElementById("property-news-updates-animations")) return;
|
|
@@ -3018,7 +3018,7 @@ var PropertyNewsUpdates = React5__namespace.forwardRef(
|
|
|
3018
3018
|
style: {
|
|
3019
3019
|
width: "100%",
|
|
3020
3020
|
textAlign: "left",
|
|
3021
|
-
|
|
3021
|
+
backgroundColor: "transparent",
|
|
3022
3022
|
border: "none",
|
|
3023
3023
|
cursor: "pointer",
|
|
3024
3024
|
padding: "0.75rem 0",
|
|
@@ -3031,7 +3031,7 @@ var PropertyNewsUpdates = React5__namespace.forwardRef(
|
|
|
3031
3031
|
transition: "background-color 0.15s"
|
|
3032
3032
|
},
|
|
3033
3033
|
onMouseEnter: (e) => {
|
|
3034
|
-
e.currentTarget.style.backgroundColor = "rgba(255,255,255,0.
|
|
3034
|
+
e.currentTarget.style.backgroundColor = "rgba(255,255,255,0.04)";
|
|
3035
3035
|
const title = e.currentTarget.querySelector("h3");
|
|
3036
3036
|
if (title) title.style.color = "var(--color-accent, #E6C87E)";
|
|
3037
3037
|
},
|