Skip to content

Commit

Permalink
make buttons take full size
Browse files Browse the repository at this point in the history
  • Loading branch information
luisthieme committed Sep 18, 2024
1 parent c999016 commit bfb6df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/UIDynamicForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</v-row>
<div style="display: flex; gap: 8px">
<div v-for="(action, index) in actions" :key="index" style="flex-grow: 1">
<v-btn :key="index" style="width: 100%; min-height: 36px" @click="actionFn(action)">
<v-btn :key="index" style="width: 100% !important; min-height: 36px" @click="actionFn(action)">
{{ action.label }}
</v-btn>
</div>
Expand Down

0 comments on commit bfb6df3

Please sign in to comment.