Skip to content
Snippets Groups Projects
Commit 48e6078a authored by David Mendez's avatar David Mendez
Browse files

Sunburst: improve height management and black/white labels

parent a9ec9dc5
No related branches found
No related tags found
1 merge request!20Add site footer, improve Sunburst.
......@@ -5,11 +5,15 @@
<v-card tile flat class="sunburst-card">
<v-card-subtitle> Targets in EUbOPEN </v-card-subtitle>
<v-divider />
<Sunburst
:hierachy-tree="parsedTree"
@path-updated="updateBreadcrumbsPath"
/>
<v-breadcrumbs :items="currentPath"></v-breadcrumbs>
<div class="breadcrumbs-area">
<v-breadcrumbs :items="currentPath"></v-breadcrumbs>
</div>
<div class="sunburst-area">
<Sunburst
:hierachy-tree="parsedTree"
@path-updated="updateBreadcrumbsPath"
/>
</div>
<v-divider />
<v-card-text class="text-caption text-justify">
Click on a section to expand it. Click on the links on top to see the
......@@ -86,6 +90,13 @@ export default {
width: 100%;
.sunburst-card {
height: 100%;
.breadcrumbs-area {
min-height: 58px;
}
.sunburst-area {
height: calc(100% - 220px);
padding-bottom: 10px;
}
}
}
</style>
......@@ -49,7 +49,7 @@ export default {
height: 50vmin;
}
&.lg-screen-height {
height: 50vh;
height: 65vh;
max-height: 850px;
}
.visualisation {
......
Subproject commit dae0b926e8d0abc56dab0a24e02253e74b933af1
Subproject commit 53b132cc0456d5bae0334c01f11e1e7998224dbb
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment