mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
24 lines
503 B
SCSS
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%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|