Skip to content

Commit

Permalink
Reduce padding between editable fields
Browse files Browse the repository at this point in the history
  • Loading branch information
pllim committed Aug 9, 2022
1 parent 4f282a2 commit 0db834f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions jdaviz/configs/default/plugins/subset_plugin/subset_plugin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@

<!-- Composite region cannot be edited, so just grab first element. -->
<div v-if="is_editable">
<v-row v-for="(item, index2) in subset_definitions[0]" no-gutters>
<v-col>
<v-text-field
:label="item.name"
v-model.number="item.value"
type="number"
:disabled="item.name=='Angle'"
></v-text-field>
</v-col>
<v-row v-for="(item, index2) in subset_definitions[0]"
class="pt-0 pb-0 mt-0 mb-0">
<v-text-field
:label="item.name"
v-model.number="item.value"
type="number"
:disabled="item.name=='Angle'"
></v-text-field>
</v-row>

<v-row justify="end" no-gutters>
Expand Down

0 comments on commit 0db834f

Please sign in to comment.