Joe 59950b0f95
UX: category description display issue
html tags like `<strong>` are displayed on separate lines inside a flexbox with `flex-wrap`
2018-07-10 13:51:46 +08:00

26 lines
474 B
SCSS

.select-kit {
.category-row {
.category-status {
display: flex;
flex-wrap: wrap;
align-items: center;
max-width: 100%;
-webkit-box-flex: 0;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.category-desc {
max-width: 100%; // needed for IE11
}
.category-status {
.badge-wrapper.box {
margin-bottom: 1px;
margin-top: 1px;
}
}
.topic-count {
white-space: nowrap;
}
}
}