Skip to content

Commit

Permalink
fixed: reduce padding/margin heuristic row ruxailab#481
Browse files Browse the repository at this point in the history
  • Loading branch information
saltykheera committed May 27, 2024
1 parent 3345307 commit 6b46f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/molecules/HeuristicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -400,14 +400,14 @@
<v-divider />
<v-list dense height="470px" class="list-scroll">
<v-list-item-group v-model="questionSelect" color="#fca326">
<v-list-item
<v-list-item style="min-height: 56px;"
v-for="(item, i) in heuristics[itemSelect].questions"
:key="i"
>
<v-list-item-content>
<v-list-item-title>{{ item.title }}</v-list-item-title>
</v-list-item-content>
<v-list-item-icon v-if="i == questionSelect">
<v-list-item-icon v-if="i == questionSelect" style="margin-top:15px" >
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down

0 comments on commit 6b46f94

Please sign in to comment.