24 lines
503 B
SCSS

@import 'ChillMainAssets/module/bootstrap/shared';
/// Specific badge rounded-pill
.badge.rounded-pill {
&.bg-thirdparty {
//@extend .$chill-ll-gray;
background-color: $chill-ll-gray;
color: $chill-pink;
}
}
/// force first column width in list
div.thirdparty-list {
div.flex-table {
div.item-bloc {
div.item-row {
div.item-col:first-child {
flex-basis: 25%;
}
}
}
}
}