1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.image { max-width: 100%; @extend .image--md; } .image--md { width: map-get($image, width); } .image--xl { width: map-get($image, width-xl); } .image--lg { width: map-get($image, width-lg); } .image--sm { width: map-get($image, width-sm); } .image--xs { width: map-get($image, width-xs); }