Skip to content

Commit

Permalink
fix(plugins): change flexbox widths for IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
Enrico Sacchetti authored and nijikokun committed May 25, 2017
1 parent daee29f commit e394f00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/_assets/stylesheets/pages/plugins.less
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
.plugin-plate {
&:extend(.columns all, .four.columns);
display: flex;
flex: 0 1 100%;
flex: 1 1 100%;
flex-direction: column;
margin-bottom: 40px;
border: 1px solid #e0e0e0;
Expand All @@ -53,7 +53,8 @@
transition: border-color .2s;

@media (min-width: @grid-width-sm) {
flex-basis: 30.65%;
flex-basis: 30%;
max-width: 30.65%;
}

&:hover {
Expand Down

0 comments on commit e394f00

Please sign in to comment.