@orderly.network/ui-order-entry 2.8.6 → 2.8.7
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +13 -13
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
|
|
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",
|
|
784
|
+
children: /* @__PURE__ */ jsxs(Text, { size: "sm", children: [
|
|
785
785
|
value,
|
|
786
786
|
"%"
|
|
787
787
|
] })
|