mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-28 20:09:59 +00:00
38 lines
576 B
SCSS
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: '';
|
|
}
|
|
}
|
|
}
|