Dani Palou 47a8d5da35 MOBILE-4270 iframe: Fix auto-login not working sometimes
This was because core-loading removed the iframe from DOM, and then the WebView canceled the request. But the request could have consumed the single use key already.
2023-05-10 12:31:15 +02:00

24 lines
366 B
SCSS

:host {
flex-grow: 1;
.core-iframe-loading {
display: none;
}
}
:host-context(.core-iframe-fullscreen) {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
height: 100%;
z-index: 9999;
}
:host-context(.limited-width > :not([slot])) {
display: flex;
flex-direction: column;
}