• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.article__info {
2  font-size: map-get($base, font-size-sm);
3  color: $text-color-l;
4  .left-col {
5    float: left;
6    @include media-breakpoint-down(md) {
7      float: none;
8    }
9  }
10  .right-col {
11    float: right;
12    margin-left: map-get($button, padding-x-sm);
13    @include media-breakpoint-down(md) {
14      float: none;
15    }
16    & > li {
17      &:not(:last-child) {
18        @include split-line(right, default, $text-color-l);
19        padding-right: map-get($spacers, 2);
20        margin-right: map-get($spacers, 2);
21        line-height: map-get($base, line-height-xs);
22      }
23    }
24  }
25}
26