yannstatic/_sass/additional/_photo-frame.scss
2024-10-31 20:18:37 +01:00

18 lines
303 B
SCSS

.article__content {
img.shadow, .shadow > img {
@include box-shadow();
}
img.border, .border > img {
border: 1px solid $border-color-l;
}
img.rounded, .rounded > img {
border-radius: map-get($base, border-radius);
}
img.circle, .circle > img {
border-radius: 50%;
}
}