/* source-owned generated style asset */
.iframe-container { width: 100%; /* Adjust based on your requirement */ height: 900px; /* Adjust based on your requirement */ overflow: hidden; position: relative; } .iframe-container iframe { position: absolute; top: -150px; /* Shifts the iframe content up to hide the first 50px */ left: 0; width: 100%; height: calc(100% + 150px); /* Increase height to compensate for the shift */ }
