Skip to content

Commit

Permalink
Merge pull request #58 from alercebroker/feat/target_details
Browse files Browse the repository at this point in the history
Fix layout overview
  • Loading branch information
Demurest authored Jun 24, 2024
2 parents 353fc0c + 89e691b commit 2b36f2a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/watchlist/Overview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3>No target selected</h3>
</v-card-text>
</v-card>
<v-card v-else id="cardOverview" max-height="780" class="overflow-condition">
<v-card v-else id="cardOverview" max-height="800" class="overflow-condition">
<overview-layout>
<template v-slot:selecter>
<v-select
Expand Down
4 changes: 1 addition & 3 deletions src/ui/components/watchlist/SetFilters.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ import Vue from "vue";
export default Vue.extend({
data() {
return {
yo: "",
};
return {};
},
});
</script>
Expand Down
17 changes: 11 additions & 6 deletions src/ui/layouts/OverviewLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,25 @@
<slot name="selecter"></slot>
</v-col>
</v-row>
<v-row justify="start">
<v-row justify="center">
<v-col lg="7" md="11" sm="11">
<slot name="lightcurve"></slot>
</v-col>
<v-col lg="4" md="11" sm="11" class="pa-0">
<v-row>
<v-col lg="4" md="11" sm="11">
<v-row justify="center">
<v-col lg="12" md="12" sm="12">
<slot name="target"></slot>
</v-col>
<v-row>
<v-col lg="12" md="12" sm="12">
<v-row justify="center">
<v-col lg="11" md="12" sm="12">
<slot name="matches"></slot>
</v-col>
<v-col md="12" sm="12" class="pb-8 d-flex flex-row-reverse">
<v-col
lg="11"
md="12"
sm="12"
class="pb-8 pt-0 d-flex flex-row-reverse"
>
<slot name="alertInfo"></slot>
</v-col>
</v-row>
Expand Down

0 comments on commit 2b36f2a

Please sign in to comment.