Skip to content

Commit

Permalink
Merge pull request #133 from isubit/INTERIM-82
Browse files Browse the repository at this point in the history
INTERIM-82 Fixed flexbox in IE11
  • Loading branch information
angelamnr committed Jul 12, 2017
2 parents 71e82ed + 1def898 commit 176ea7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions css/suitcase.css
Original file line number Diff line number Diff line change
Expand Up @@ -835,19 +835,19 @@ input[type=submit].form-submit {
.luggage-gridrow,
.luggage-gridrow3,
.luggage-gridrow4 {
flex-basis: 48.6%;
flex-basis: calc(50% - 51px);
min-width: 48.6%;
}
}

@media only screen and (min-width: 1024px) {
.luggage-gridrow3 {
flex-basis: 31.3%;
flex-basis: calc(33% - 51px);
min-width: 31.3%;
}

.luggage-gridrow4 {
flex-basis: 23.5%;
flex-basis: calc(25% - 51px);
min-width: 23.5%;
}

Expand Down

0 comments on commit 176ea7b

Please sign in to comment.