mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
19 lines
No EOL
303 B
SCSS
19 lines
No EOL
303 B
SCSS
.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);
|
|
} |