システムで外部からカレンダーを引っ張ってきてiframeで表示させているものがあった。
とりあえず適当に高さを取って高さが足りない場合はoverflow: scrollで良いかと思っていたらスクロール表示をやめて欲しいとのこと。
jsを書いて解決。
const iframe = document.getElementById('calendar');
iframe.addEventListener('load', function() {
var calendarHeight = iframe.contentWindow.document.documentElement.offsetHeight;
iframe.style.height = calendarHeight + "px";
});