MOBILE-3833 loading: Fix incorrect order of DOM on iOS

main
Pau Ferrer Ocaña 2022-04-07 13:43:02 +02:00
parent c10db2e1f9
commit 69ffb7ea10
1 changed files with 7 additions and 0 deletions

View File

@ -95,3 +95,10 @@
flex-direction: column; flex-direction: column;
min-height: 100%; min-height: 100%;
} }
// There is a bug on iOs that displays inside elements in wrong order.
// This bug seems not to affect other elements like format-text
:host-context(.ios) {
--contents-display: flex;
flex-direction: column;
}