@qiwi/pijma-desktop 1.152.0 → 1.152.1
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/lib/es5/button/Button.js
CHANGED
|
@@ -155,6 +155,7 @@ var Button = function(props) {
|
|
|
155
155
|
width: 6,
|
|
156
156
|
height: 6,
|
|
157
157
|
transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
|
|
158
|
+
transform: "translateZ(0)",
|
|
158
159
|
children: /*#__PURE__*/ _react.default.cloneElement(props.icon, {
|
|
159
160
|
color: props.disabled ? "#666" : props.kind === "brand" ? "#fff" : "#000",
|
|
160
161
|
size: 1
|
package/lib/es6/button/Button.js
CHANGED
|
@@ -142,6 +142,7 @@ export const Button = (props)=>{
|
|
|
142
142
|
width: 6,
|
|
143
143
|
height: 6,
|
|
144
144
|
transition: "all 300ms cubic-bezier(0.4, 0.0, 0.2, 1)",
|
|
145
|
+
transform: "translateZ(0)",
|
|
145
146
|
children: /*#__PURE__*/ React.cloneElement(props.icon, {
|
|
146
147
|
color: props.disabled ? '#666' : props.kind === 'brand' ? '#fff' : '#000',
|
|
147
148
|
size: 1
|