@thecb/components 12.1.0-beta.10 → 12.1.0-beta.12
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.cjs.js +5 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/payment-form-ach/PaymentFormACH.js +1 -1
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +1 -1
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV2.js +1 -1
package/package.json
CHANGED
|
@@ -173,7 +173,7 @@ const PaymentFormACH = ({
|
|
|
173
173
|
/>
|
|
174
174
|
)}
|
|
175
175
|
{(showWalletCheckbox || showTerms) && (
|
|
176
|
-
<Cluster childGap={"4px"} align="center">
|
|
176
|
+
<Cluster childGap={"4px"} align="center" overflow>
|
|
177
177
|
{showWalletCheckbox && (
|
|
178
178
|
<Checkbox
|
|
179
179
|
name="bank checkbox"
|
|
@@ -197,7 +197,7 @@ const PaymentFormCard = ({
|
|
|
197
197
|
</Box>
|
|
198
198
|
)}
|
|
199
199
|
{(showWalletCheckbox || showTerms) && (
|
|
200
|
-
<Cluster childGap={"4px"} align="center">
|
|
200
|
+
<Cluster childGap={"4px"} align="center" overflow>
|
|
201
201
|
{showWalletCheckbox && (
|
|
202
202
|
<Checkbox
|
|
203
203
|
name="credit card checkbox"
|
|
@@ -52,7 +52,7 @@ const TermsAndConditionsControlV2 = ({
|
|
|
52
52
|
>
|
|
53
53
|
<Stack childGap="0">
|
|
54
54
|
{html && <Box padding="0">{html}</Box>}
|
|
55
|
-
<Cluster justify="flex-start" align="center" nowrap
|
|
55
|
+
<Cluster justify="flex-start" align="center" nowrap>
|
|
56
56
|
{showCheckbox && (
|
|
57
57
|
<Checkbox
|
|
58
58
|
name={id}
|