Skip to content

Commit

Permalink
feat: new search bar and variant page
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Sep 4, 2023
1 parent 8074895 commit 55bdd98
Show file tree
Hide file tree
Showing 7 changed files with 2,324 additions and 2,301 deletions.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
a,
.green {
text-decoration: none;
color: rgb(111, 100, 210);
color: rgb(229,85,64);
transition: 0.4s;
}

Expand Down
2,317 changes: 22 additions & 2,295 deletions frontend/src/assets/reev-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,296 changes: 2,296 additions & 0 deletions frontend/src/assets/reev-logo_old.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/components/HeaderDefault.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ onMounted(() => {
<v-app-bar app class="top-bar">
<v-toolbar-title>
<router-link to="/">
<img src="@/assets/reev-logo.svg" id="logo" alt="logo" width="100" />
<img src="@/assets/reev-logo.svg" id="logo" alt="logo" width="70" />
Explanation and Evaluation of Variants
<small>{{ miscStore?.appVersion }}</small>
</router-link>
Expand All @@ -31,7 +31,7 @@ onMounted(() => {
<style scoped>
.top-bar {
background-color: white;
border-bottom: 2px solid rgb(111, 100, 210);
border-bottom: 2px solid rgb(229, 85, 64);
}
.topbar-links {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/HeaderDetailPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const performSearch = async () => {
<style scoped>
.top-bar {
background-color: white;
border-bottom: 2px solid rgb(111, 100, 210);
border-bottom: 2px solid rgb(229, 85, 64);
}
.top-search-bar {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/GeneDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ const genomeReleaseRef = ref(props.genomeRelease)
.gene-item {
margin-bottom: 20px;
border: 2px solid rgb(111, 100, 210);
border: 2px solid rgb(229, 85, 64);
border-radius: 10px;
padding: 5px 10px;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/VariantDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const genomeReleaseRef = ref(props.genomeRelease)
.variant-item {
margin-bottom: 20px;
border: 2px solid rgb(111, 100, 210);
border: 2px solid rgb(229, 85, 64);
border-radius: 10px;
padding: 5px 10px;
}
Expand Down

0 comments on commit 55bdd98

Please sign in to comment.