How can I add some external (or in any other way) CSS to PowerBI report embedded in Angular application as iframe? I need to remove the scrollbar from it, so I need to add this, so that the report fits better inside the iframe of the angular page:
.explorationContainer .exploreCanvas .canvasFlexBox {
height: inherit !important;
}
for the love of me, I couldn't find a way to insert it. I tried putting it in styles.scss of the angular app, but no go.