@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.js
CHANGED
|
@@ -784,10 +784,10 @@ var SlippageItem = ({ value, isActive, onClick }) => {
|
|
|
784
784
|
height: 40,
|
|
785
785
|
className: ui.cn(
|
|
786
786
|
"oui-cursor-pointer oui-select-none",
|
|
787
|
-
isActive
|
|
787
|
+
isActive ? "oui-bg-primary-light oui-text-primary-contrast/80" : "oui-text-base-contrast-80"
|
|
788
788
|
),
|
|
789
789
|
onClick,
|
|
790
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs(ui.Text, { size: "sm",
|
|
790
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(ui.Text, { size: "sm", children: [
|
|
791
791
|
value,
|
|
792
792
|
"%"
|
|
793
793
|
] })
|