Skip to content

Commit

Permalink
ruxailab#480 removed hardcoded height and added responsive solution
Browse files Browse the repository at this point in the history
  • Loading branch information
saltykheera committed Jun 4, 2024
1 parent b99fef5 commit 3f14046
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/molecules/HeuristicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@
</template>
<template v-else>
<v-list-item
style="height: 40px ;"
v-for="(item, i) in filteredHeuristics"
:key="i"
class="pb-0 pt-0"
Expand Down Expand Up @@ -294,7 +293,7 @@
</v-btn>
</v-list-item-action>
</div>
<v-list-item-icon v-if="i == itemSelect">
<v-list-item-icon v-if="i == itemSelect" class="pt-4">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down Expand Up @@ -403,9 +402,11 @@
:key="i"
>
<v-list-item-content>
<v-list-item-title>{{ item.title }}</v-list-item-title>
<v-list-item-title class="py-3">{{
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" class="pt-4">
<v-icon>mdi-chevron-right</v-icon>
</v-list-item-icon>
</v-list-item>
Expand Down

0 comments on commit 3f14046

Please sign in to comment.