jQuery('iframe[name="OneAll Social Login"]').on('load', function($) {
let iframeHead = $(this).contents().find('head');
let newLink = $('link');
$('link').attr('href', 'style-iframe.css');
$('link').attr('rel', 'stylesheet');
$('link').attr('type', 'text/css');
$(iframeHead).append(newLink);
});