favesalon-embed 1.0.18 → 1.0.19
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.
|
@@ -156,7 +156,9 @@ const BuyGiftcardVerification = class {
|
|
|
156
156
|
paddingLeft: '24px',
|
|
157
157
|
paddingRight: '24px',
|
|
158
158
|
height: '48px',
|
|
159
|
+
minWidth: '120px',
|
|
159
160
|
marginLeft: '16px',
|
|
161
|
+
textAlign: 'center',
|
|
160
162
|
...this.isSearchingUser ? {
|
|
161
163
|
color: Colors.TextColor,
|
|
162
164
|
borderColor: Colors.Gray03,
|
|
@@ -8,10 +8,10 @@ const IconLoading = class {
|
|
|
8
8
|
this.size = 18;
|
|
9
9
|
}
|
|
10
10
|
render() {
|
|
11
|
-
return (h("
|
|
11
|
+
return (h("svg", { class: "fs-spin", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", style: {
|
|
12
12
|
width: `${this.size}px`,
|
|
13
13
|
height: 'auto',
|
|
14
|
-
} }, h("path", { d: "M18.364 5.63604L16.9497 7.05025C15.683 5.7835 13.933 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12H21C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604Z" })))
|
|
14
|
+
} }, h("path", { d: "M18.364 5.63604L16.9497 7.05025C15.683 5.7835 13.933 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12H21C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604Z" })));
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
17
|
IconLoading.style = iconLoadingCss;
|