Fixes full screen when item's list is inside a container relativelly positioned.
This commit is contained in:
parent
c8fd29fc7e
commit
d10a1e0bc2
|
@ -1536,11 +1536,13 @@
|
|||
}
|
||||
|
||||
.is-fullscreen {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: 999999999;
|
||||
|
|
|
@ -1478,11 +1478,13 @@
|
|||
}
|
||||
|
||||
.is-fullscreen {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: 999999999;
|
||||
|
|
|
@ -671,6 +671,8 @@ export default {
|
|||
flex-wrap: nowrap;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue