diff --git a/assets/sass/_list.scss b/assets/sass/_list.scss index ebd54c6..a57e076 100644 --- a/assets/sass/_list.scss +++ b/assets/sass/_list.scss @@ -1,4 +1,4 @@ -$list-item-image-size: 32px; +$list-item-image-size: 24px; .list { .header { @@ -60,8 +60,13 @@ $list-item-image-size: 32px; } .list-item-image { - max-width: $list-item-image-size; - max-height: $list-item-image-size; + width: $list-item-image-size; + height: $list-item-image-size; + + @media (max-width: $md) { + width: $list-item-image-size * 0.75; + height: $list-item-image-size * 0.75; + } margin-right: 1rem; }