@orderly.network/ui-transfer 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.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
|
@@ -1228,10 +1228,10 @@ var SlippageItem = ({ value, isActive, onClick }) => {
|
|
|
1228
1228
|
height: 40,
|
|
1229
1229
|
className: cn(
|
|
1230
1230
|
"oui-cursor-pointer oui-select-none",
|
|
1231
|
-
isActive
|
|
1231
|
+
isActive ? "oui-bg-primary-light oui-text-primary-contrast/80" : "oui-text-base-contrast-80"
|
|
1232
1232
|
),
|
|
1233
1233
|
onClick,
|
|
1234
|
-
children: /* @__PURE__ */ jsxs(Text, { size: "sm",
|
|
1234
|
+
children: /* @__PURE__ */ jsxs(Text, { size: "sm", children: [
|
|
1235
1235
|
value,
|
|
1236
1236
|
"%"
|
|
1237
1237
|
] })
|