24 lines
405 B
SCSS
24 lines
405 B
SCSS
:host {
|
|
> div {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
iframe {
|
|
border: 0;
|
|
display: block;
|
|
max-width: 100%;
|
|
background-color: var(--ion-background-color);
|
|
}
|
|
}
|
|
|
|
:host-context(.core-iframe-fullscreen) {
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 9999;
|
|
}
|