Fixes full screen when item's list is inside a container relativelly positioned.

This commit is contained in:
Mateus Machado Luna 2019-05-14 10:15:49 -03:00
parent c8fd29fc7e
commit d10a1e0bc2
3 changed files with 8 additions and 2 deletions

View File

@ -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;

View File

@ -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;

View File

@ -671,6 +671,8 @@ export default {
flex-wrap: nowrap;
flex-direction: column;
justify-content: space-between;
width: 100%;
height: 100%;
height: 100vh;
width: 100vw;
}