Skip to content

Commit 76fa52e

Browse files
committed
feat(payment): Stripe Link V2 button strategy SPIKE buy now flow
1 parent 3ffd778 commit 76fa52e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/apple-pay-integration/src/apple-pay-customer-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ export default class ApplePayCustomerStrategy implements CustomerStrategy {
139139

140140
private _createApplePayButtonElement(): HTMLElement {
141141
const applePayButton = document.createElement('apple-pay-button');
142-
142+
console.log('applePayButton');
143143
applePayButton.setAttribute('buttonstyle', 'black');
144144
applePayButton.setAttribute('type', 'plain');
145145
applePayButton.setAttribute(
146146
'style',
147-
'--apple-pay-button-width: 100%; --apple-pay-button-height: 36px; --apple-pay-button-border-radius: 4px;',
147+
'--apple-pay-button-width: 100%; --apple-pay-button-height: 38px; --apple-pay-button-border-radius: 4px;',
148148
);
149149

150150
return applePayButton;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const DefaultCheckoutButtonHeight = 36;
1+
const DefaultCheckoutButtonHeight = 40;
22

33
export default DefaultCheckoutButtonHeight;

0 commit comments

Comments
 (0)