2019-08-31 20:51:14 -07:00

38 lines
576 B
SCSS

.wherehows-entity-header-property {
$margin-spacing: 10px;
display: flex;
padding: 0;
width: 100%;
&__name,
&__value {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&__name {
flex-shrink: 0;
margin-right: $margin-spacing;
width: 100px;
}
&__value {
word-break: break-word;
white-space: normal;
flex-shrink: 1;
margin-left: $margin-spacing;
}
&__item-value {
&:after {
content: ',';
color: get-color(black);
}
&:last-of-type:after {
content: '';
}
}
}