• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.article__content {
2  img.shadow, .shadow > img {
3    @include box-shadow();
4  }
5
6  img.border, .border > img {
7    border: 1px solid $border-color-l;
8  }
9
10  img.rounded, .rounded > img {
11    border-radius: map-get($base, border-radius);
12  }
13
14  img.circle, .circle > img {
15    border-radius: 50%;
16  }
17}