@loafmarkets/ui 0.1.74 → 0.1.75

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 CHANGED
@@ -3018,7 +3018,7 @@ var PropertyNewsUpdates = React5__namespace.forwardRef(
3018
3018
  style: {
3019
3019
  width: "100%",
3020
3020
  textAlign: "left",
3021
- background: "transparent",
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.02)";
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
  },