yannstatic/_sass/common/components/_image.scss

20 lines
304 B
SCSS
Raw Normal View History

2024-10-31 20:18:37 +01:00
.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);
}