We are using dwolla.js + IAV and the trying to apply custom styles to the iframe, but they are not coming through.
dwolla.configure("sandbox");
dwolla.iav.start(
iavToken,
{
container: 'iavContainer',
stylesheets: ['https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext', '/styles/dwolla.css'],
microDeposits: false,
fallbackToMicroDeposits: false,
},
function (err, res) {console.log(err, res)}
);
When the IAV container is initiated, it looks like the stylesheets are coming from https://sandbox.dwolla.com rather than the local file specified in the stylesheets configuration:
How should these custom styles be added to appear correctly in the iframe?
