Skip to content

Commit

Permalink
NN-395 Change the background color for pathway graph
Browse files Browse the repository at this point in the history
  • Loading branch information
TripZz committed Nov 26, 2023
1 parent 801ffec commit bfff8d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion frontend/src/components/visualization/MainVis.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,6 @@ height: 0;
position: absolute;
box-sizing: border-box;
overflow: hidden;
background-color: #0A0A1A;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/views/ProteinView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,8 @@ export default {
width: 100%;
justify-content: center;
}
.protein-view{
background-color: #0A0A1A;
}
</style>
6 changes: 4 additions & 2 deletions frontend/src/views/TermView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<keep-alive>
<div class="protein-view">
<div class="term-view">
<TermVis ref="termVis"
:active_node='active_node' @active_node_changed='active_node = $event'
:active_fdr='active_fdr' @active_fdr_changed='active_fdr = $event'
Expand Down Expand Up @@ -194,5 +194,7 @@ export default {
</script>

<style>
.term-view{
background-color: #0a1a0b;
}
</style>

0 comments on commit bfff8d2

Please sign in to comment.