@orderly.network/ui-order-entry 2.8.6 → 2.8.7-alpha.0

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
@@ -778,10 +778,10 @@ var SlippageItem = ({ value, isActive, onClick }) => {
778
778
  height: 40,
779
779
  className: cn(
780
780
  "oui-cursor-pointer oui-select-none",
781
- isActive && "oui-bg-primary-light"
781
+ isActive ? "oui-bg-primary-light oui-text-primary-contrast/80" : "oui-text-base-contrast-80"
782
782
  ),
783
783
  onClick,
784
- children: /* @__PURE__ */ jsxs(Text, { size: "sm", intensity: 80, children: [
784
+ children: /* @__PURE__ */ jsxs(Text, { size: "sm", children: [
785
785
  value,
786
786
  "%"
787
787
  ] })