mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
31 lines
648 B
SCSS
31 lines
648 B
SCSS
.dataset-main {
|
|
// Dataset will feature a contained breadcrumbs component, offset its height to prevent overlapping content
|
|
margin-top: $application-navigation-breadcrumbs-static-height;
|
|
}
|
|
|
|
.dataset-meta-properties {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: item-spacing(5);
|
|
margin-bottom: item-spacing(5);
|
|
}
|
|
|
|
.dataset-name {
|
|
max-width: item-spacing(8) * 11;
|
|
padding-right: item-spacing(3);
|
|
word-wrap: break-word;
|
|
text-overflow: ellipsis;
|
|
margin: 0;
|
|
}
|
|
|
|
.dataset-header-meta {
|
|
display: flex;
|
|
position: relative;
|
|
|
|
.dataset-health-score {
|
|
position: absolute;
|
|
right: item-spacing(5);
|
|
bottom: -32px;
|
|
}
|
|
}
|