如何重载Stripe的css

时间:2018-04-11 06:18:13

标签: css stripe-payments

我目前正在使用Stripe支付系统,我想重载"描述"部分。 不幸的是,代码是由javascript生成的,我无法确保将我的更改考虑在内。 在浏览器控制台中,当我改变一切都很好,但如果我采取Stripe的类,我把它们放在"!重要",它不起作用。

代码条纹:

handler.open({
            name: 'Test',
            description: 'Your transaction is insured securely by our payment partner Stripe. We never store sensitive data such as your card number or security code. This data is encrypted by Stripe and we do not have access to it.',
            currency: 'eur',
            amount: $('#toPay').text() * 100,
            email: email,
            allowRememberMe: false,
        });
        e.preventDefault();
    });

结果: enter image description here

如您所见,描述文字未完整显示

这是因为部分用红色框起来。我希望能够超载它: enter image description here

有没有人必须这样做?

谢谢

0 个答案:

没有答案