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