woocommerce-paypal-payments/modules/ppcp-button/resources/css/mixins/apm-button.scss

43 lines
551 B
SCSS
Raw Normal View History

2023-12-07 18:20:58 +00:00
@mixin button {
2023-12-11 17:14:43 +00:00
overflow: hidden;
min-width: 0;
2023-12-07 18:20:58 +00:00
max-width: 750px;
line-height: 0;
2023-12-11 17:14:43 +00:00
border-radius: 4px;
// Defaults
height: 45px;
margin-top: 14px;
&.ppcp-button-pill {
border-radius: 50px;
}
&.ppcp-button-minicart {
display: block;
}
2023-12-07 18:20:58 +00:00
.ppcp-width-min & {
height: 35px;
}
.ppcp-width-300 & {
height: 45px;
}
.ppcp-width-500 & {
height: 55px;
}
2023-12-11 17:14:43 +00:00
// No margin on block layout.
.wp-block-woocommerce-checkout &, .wp-block-woocommerce-cart & {
margin: 0;
min-width: 0;
}
.wp-admin & {
pointer-events: none;
}
2023-12-07 18:20:58 +00:00
}