Merge pull request #3459 from crazyserver/MOBILE-4081

MOBILE-4081 iframe: Fix top bar flex when no fullscreen
main
Dani Palou 2022-11-22 17:02:34 +01:00 committed by GitHub
commit bf5cf8bcb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ export class CoreIframeComponent implements OnChanges, OnDestroy {
// Done this way because of the shadow DOM. // Done this way because of the shadow DOM.
this.style.textContent = this.fullscreen this.style.textContent = this.fullscreen
? '@media screen and (orientation: landscape) {\ ? '@media screen and (orientation: landscape) {\
.toolbar-container { flex-direction: column-reverse !important; height: 100%; } }' .core-iframe-fullscreen .toolbar-container { flex-direction: column-reverse !important; height: 100%; } }'
: ''; : '';
} }