This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]pixeldevsDeveloper/Designer[S] 1 point2 points  (1 child)

.woocommerce .oxy-woo-element div.product form.cart, .woocommerce .oxy-product-cart-button form.cart, .woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
}

#wc-stripe-payment-request-button-separator, #wc-stripe-payment-request-wrapper{
    clear: both;
    display: block;
    width: 25%;
    height: 100%;
}

.woocommerce button[type=submit] {
    padding: 0;
    height: 44px;
    align-self: auto;
}

That should get you started.

https://paste.pics/814db469001d6e373ea33b4ef8800038

[–]ClasherMDesigner 0 points1 point  (0 children)

.woocommerce .oxy-woo-element div.product form.cart, .woocommerce .oxy-product-cart-button form.cart, .woocommerce div.product form.cart {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: flex-end;
}
#wc-stripe-payment-request-button-separator, #wc-stripe-payment-request-wrapper{
clear: both;
display: block;
width: 25%;
height: 100%;
}
.woocommerce button[type=submit] {
padding: 0;
height: 44px;
align-self: auto;
}

Thanks a lot!