Fix Flexbox cross-browser issues

- Fixes Flexbox cross-browser issues (Safari) that prevents moving on in the listing wizard if user adds many images to the listing
This commit is contained in:
Mikko Koski 2017-05-17 13:45:50 +03:00
parent 8af1d23f9f
commit 1cb5f5d574
10 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
padding: 0 1rem;
}

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
padding: 0 1rem;
}

View file

@ -4,6 +4,7 @@
display: flex;
flex-direction: column;
padding: 0 1rem;
flex: 1;
}
.payoutModalOpen {

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
padding: 0 1rem;
}

View file

@ -1,6 +1,7 @@
/* Content is visible as modal layer */
.isOpen {
display: flex;
flex: 1;
flex-direction: column;
position: fixed;
top: 0;
@ -63,6 +64,7 @@
.content {
flex-grow: 1;
display: flex;
flex: 1;
flex-direction: column;
overflow: auto;
}

View file

@ -3,4 +3,5 @@
flex-direction: column;
width: 100%;
height: 100%;
flex: 1;
}

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
}

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
}

View file

@ -3,6 +3,7 @@
height: 100%;
display: flex;
flex-direction: column;
flex: 1;
}
.imagesField {

View file

@ -2,6 +2,7 @@
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
flex-grow: 1;
}