Remove class from radio-question.vue per Max request.

Add <p> wrapper around copy.
This commit is contained in:
bmauger 2021-12-01 12:28:37 -05:00
parent 0bb934129b
commit f0e0318465
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@
<div class="w-100 d-flex justify-content-center">
<div class="car_list overflow-scroll position-absolute container-fluid pt-1" role="radiogroup" aria-labelledby="select-year-radio-group">
<h3 class="visually-hidden" id="select-year-radio-group">*</h3>
<radio v-for="answer in answers" :key="answer" class="mb-2"
<radio v-for="answer in answers" :key="answer"
:radioID="answer"
@click="chooseAnswer(answer)"
loaderColor="blue"

View file

@ -5,7 +5,7 @@
class="btn btn-primary d-flex align-items-center py-3 px-4"
@click='displayComponent'
>
{{ this.buttonText }}
<p class="m-0">{{ this.buttonText }}</p>
<loader
class="ms-2"
v-if="display"

View file

@ -5,7 +5,7 @@
class="btn btn-secondary d-flex align-items-center py-3 px-4"
@click='displayComponent'
>
{{ this.buttonText }}
<p class="m-0">{{ this.buttonText }}</p>
<loader
class="ms-2"
v-if="display"

View file

@ -8,7 +8,7 @@
this.isError ? 'error' : '',
]"
>
{{ this.buttonText }}
<p class="m-0">{{ this.buttonText }}</p>
<loader
v-if="display"
v-bind:style="{width: `${sizeInRem}rem`, height: `${sizeInRem}rem`}"