Skip to content

Commit 23dd4c0

Browse files
Merge pull request #99 from snjlee58/master
Visual tweaks for dark mode and margin adjustments
2 parents 0ee170d + 2848a58 commit 23dd4c0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

frontend/ResultView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
</v-btn>
113113
</v-btn-toggle>
114114
</v-flex>
115-
<v-flex v-if="isSankeyVisible && entry.taxonomyreport">
115+
<v-flex v-if="isSankeyVisible && entry.taxonomyreport" class="mb-2">
116116
<SankeyDiagram :rawData="entry.taxonomyreport" :currentSelectedNodeId="selectedTaxId" @selectTaxon="handleSankeySelect"></SankeyDiagram>
117117
</v-flex>
118118
<table class="v-table result-table" style="position:relativ; margin-bottom: 3em;">

frontend/SankeyDiagram.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,13 @@ export default {
625625
</script>
626626
627627
<style scoped>
628+
.theme--dark svg {
629+
fill: white;
630+
}
631+
.theme--light svg {
632+
fill: black;
633+
}
634+
628635
.sankey-container {
629636
display: flex;
630637
width: 100%;

0 commit comments

Comments
 (0)