I have added the following css to the body of IFrame but it is not working, I also tried it with jQuery but no success.
I found that it can't be added with cross domain and found a Solution but that didn't work
Here is the code I tried
.cal iframe html body {
overflow:hidden;
}
Here is the code I tried with JQUery
$("#myiFrame").on("load", function() {
let body = $("#myiFrame").contents().find("body");
let css = '<style>/********* Put your styles here **********</style>';
$(body).append(css);
});