لا علاقة لهذا بالأحرف الصينية، إنها مشكلة في إعداد نمط الفئة “box”.
.badge {
&-category-bg, /* <------ سيء!! */
&-wrapper.bullet &-category-parent-bg,
&-wrapper.bullet &-category-parent-bg + &-category-bg {
border-radius: 50%;
width: 9px;
}
لحل هذه المشكلة، قم بتطبيق هذا كمكون سمة
.badge {
&-wrapper.bar &-category-bg,
&-wrapper.bar &-category-parent-bg,
&-wrapper.bar &-category-parent-bg + &-category-bg {
border-radius: 0%;
}
&-wrapper.box &-category-bg,
&-wrapper.box &-category-parent-bg,
&-wrapper.box &-category-parent-bg + &-category-bg {
border-radius: 0%;
width: 100%;
}
}
