summaryrefslogtreecommitdiff
path: root/_sass/additional/_photo-frame.scss
blob: 55a30c7ae2fe5734438929b712f565a97400ea32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.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%;
  }
}