Skip to content

Commit

Permalink
Wire item image aspect ratio fix (#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
darconny authored Mar 26, 2020
1 parent cf10f8f commit 8ccb49b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions assets/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1614,9 +1614,11 @@ article.list {
}
img {
max-width: none;
max-height: none;
width: 100%;
@include xl {
max-width: 160px;
max-height: 140px;
width: auto;
}
}
Expand Down Expand Up @@ -2047,11 +2049,16 @@ article.list {
}
img {
max-width: none;
max-height: none;
height: auto;
width: 100%;
@include md {
max-width: 160px;
width: auto;
}
@include lg {
max-height: 140px;
}
}
}
@include md {
Expand Down

0 comments on commit 8ccb49b

Please sign in to comment.