Has anyone tried to style p24 element on mobile? When I apply styles via options prop those are being applied to the dropdown on desktops only, when I open the dropdown on mobile it looks like pure html.
this is my component
export const P24Component = () => {
return (
<section className="w-full">
<P24BankElement
className="w-full p-3 shadow-sm bg-transparent border border-b-purple border-l-purple relative z-10"
options={{
iconStyle: "solid",
classes: { focus: "bg-purple" },
style: {
base: {
padding: "12px",
fontFamily: "Anonymous Pro, sans-serif",
fontSize: "16px",
fontSmoothing: "antialiased",
backgroundColor: "#E1EDED",
},
},
}}
/>
</section>
);
};
Thanks