Skip to content

Commit 13cf65e

Browse files
committed
adding b-form-radio to add margins to each element
1 parent 58a5e8f commit 13cf65e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/components/Inputs/WebRadio/Radio.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,19 @@
2727
<b-form-group label="" v-if="!isImageSelect">
2828
<b-form-radio-group
2929
v-model="selected"
30-
:options="options"
3130
stacked
3231
class="text-left"
3332
@change="sendData"
3433
ref="radiobutton"
35-
style="line-height: 2.5em"
3634
>
35+
<b-form-radio
36+
v-for="opt in options"
37+
:value="opt.value"
38+
:key="opt.value"
39+
class="mb-3"
40+
>
41+
{{ opt.text }}
42+
</b-form-radio>
3743
</b-form-radio-group>
3844
</b-form-group>
3945
<div class="text-center" v-else>

0 commit comments

Comments
 (0)