woocommerce-paypal-payments/modules/ppcp-button/resources/css/hosted-fields.scss
Alex P a866fd355b
Hide ACDC footer frame via CSS to avoid empty space
It seems like this iframe (added when ACDC is enabled) can result in some empty space being shown because of some inherited `body` CSS about fonts/text. So hiding it via `display: none`, I think it will not cause any issues, because this iframe is not supposed to be visible anyway (`width`, `height` are set to `0`).
2023-08-22 10:50:58 +03:00

21 lines
378 B
SCSS

#payment ul.payment_methods li img.ppcp-card-icon {
padding: 0 0 3px 3px;
max-height: 25px;
display: inline-block;
}
.payments-sdk-contingency-handler {
z-index: 1000 !important;
}
.ppcp-credit-card-gateway-form-field-disabled {
opacity: .5 !important;
}
.ppcp-dcc-order-button {
float: right;
}
iframe[id^="hosted-fields-tokenization-frame_"] {
display: none;
}