@xsolla/xui-quest-card 0.157.0 → 0.158.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/package.json +3 -3
- package/web/index.js +1 -2
- package/web/index.js.map +1 -1
- package/web/index.mjs +1 -2
- package/web/index.mjs.map +1 -1
package/web/index.mjs
CHANGED
|
@@ -210,8 +210,7 @@ var Box = React2.forwardRef(
|
|
|
210
210
|
top: typeof props.top === "number" ? `${props.top}px` : props.top,
|
|
211
211
|
left: typeof props.left === "number" ? `${props.left}px` : props.left,
|
|
212
212
|
right: typeof props.right === "number" ? `${props.right}px` : props.right,
|
|
213
|
-
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
|
|
214
|
-
...props.style
|
|
213
|
+
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
|
|
215
214
|
}
|
|
216
215
|
}
|
|
217
216
|
);
|