@thecb/components 9.3.1 → 9.3.2
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
CHANGED
|
@@ -70,19 +70,9 @@ const AutopayModal = ({
|
|
|
70
70
|
: navigateToSettings
|
|
71
71
|
};
|
|
72
72
|
|
|
73
|
-
const hoverStyles =
|
|
74
|
-
|
|
75
|
-
.autopayIcon { fill: ${themeValues.hoverColor}; text-decoration: underline; cursor: pointer; }
|
|
76
|
-
}`;
|
|
73
|
+
const hoverStyles = "text-decoration: underline;";
|
|
74
|
+
const activeStyles = "text-decoration: underline;";
|
|
77
75
|
|
|
78
|
-
const activeStyles = `
|
|
79
|
-
&:active {
|
|
80
|
-
.autopayIcon { fill: ${themeValues.activeColor}; text-decoration: underline; }
|
|
81
|
-
}`;
|
|
82
|
-
|
|
83
|
-
const defaultStyles = `
|
|
84
|
-
.autopayIcon { fill: ${themeValues.color}; text-decoration: underline; }
|
|
85
|
-
`;
|
|
86
76
|
const renderAutoPayControl = () => {
|
|
87
77
|
switch (controlType) {
|
|
88
78
|
case "secondary": {
|
|
@@ -126,7 +116,7 @@ const AutopayModal = ({
|
|
|
126
116
|
}}
|
|
127
117
|
hoverStyles={hoverStyles}
|
|
128
118
|
activeStyles={activeStyles}
|
|
129
|
-
extraStyles={
|
|
119
|
+
extraStyles={"cursor: pointer;"}
|
|
130
120
|
>
|
|
131
121
|
<Cluster
|
|
132
122
|
justify={isMobile ? "flex-start" : "flex-end"}
|