Skip to content

Commit

Permalink
Merge pull request #99 from snjlee58/master
Browse files Browse the repository at this point in the history
Visual tweaks for dark mode and margin adjustments
  • Loading branch information
milot-mirdita authored Jan 2, 2025
2 parents 0ee170d + 2848a58 commit 23dd4c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/ResultView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
</v-btn>
</v-btn-toggle>
</v-flex>
<v-flex v-if="isSankeyVisible && entry.taxonomyreport">
<v-flex v-if="isSankeyVisible && entry.taxonomyreport" class="mb-2">
<SankeyDiagram :rawData="entry.taxonomyreport" :currentSelectedNodeId="selectedTaxId" @selectTaxon="handleSankeySelect"></SankeyDiagram>
</v-flex>
<table class="v-table result-table" style="position:relativ; margin-bottom: 3em;">
Expand Down
7 changes: 7 additions & 0 deletions frontend/SankeyDiagram.vue
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,13 @@ export default {
</script>
<style scoped>
.theme--dark svg {
fill: white;
}
.theme--light svg {
fill: black;
}
.sankey-container {
display: flex;
width: 100%;
Expand Down

0 comments on commit 23dd4c0

Please sign in to comment.