MOBILE-3833 loading: Fix incorrect order of DOM on iOS
parent
c10db2e1f9
commit
69ffb7ea10
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue