2019-06-14 17:27:37 +00:00
|
|
|
%pill {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 1px 5px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
%pill button {
|
|
|
|
padding: 0;
|
2019-12-12 09:25:39 +00:00
|
|
|
width: 9px;
|
|
|
|
height: 9px;
|
|
|
|
margin-right: 4px;
|
2019-06-21 10:38:14 +00:00
|
|
|
font-size: 0;
|
2019-06-14 17:27:37 +00:00
|
|
|
}
|
2020-05-05 16:29:51 +00:00
|
|
|
%reduced-pill {
|
|
|
|
background-color: $gray-100;
|
|
|
|
padding: 0 8px;
|
|
|
|
border-radius: $decor-radius-100;
|
|
|
|
height: 18px;
|
|
|
|
line-height: 0.7rem;
|
|
|
|
}
|
|
|
|
%reduced-pill > span {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
position: relative;
|
|
|
|
color: $gray-500;
|
|
|
|
}
|
|
|
|
%reduced-pill::before {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
margin-right: 2px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|