File size: 623 Bytes
1e92f2d |
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 26 27 28 29 30 31 32 33 34 35 36 |
@import "@automattic/typography/styles/variables";
%row-title-label {
display: inline-block;
height: 20px;
color: $studio-green-0;
font-size: $font-body-extra-small;
font-weight: 500;
border-radius: 4px;
margin-left: 8px;
line-height: 20px;
padding: 0 10px;
}
%p2-label {
@extend %row-title-label;
background: var(--p2-color-link);
}
%paid-label {
@extend %row-title-label;
background: $studio-green-50;
}
%gift-label {
@extend %row-title-label;
background: $studio-yellow-40;
color: $studio-yellow-0;
}
%rss-label {
@extend %row-title-label;
color: $studio-gray-0;
background: $studio-orange-20;
}
|