Merge pull request #260 from Safelite/feature/radio-question-text-alignment
aligning question text to left on radio question type
This commit is contained in:
commit
8c59e2174f
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<template>
|
||||
<div :class="isOverflowScrollable ? 'button-question button-question-overflow' : 'button-question'">
|
||||
<div v-if="questionText" class="mt-5 mb-4 d-flex">
|
||||
<span class="text-center fs-5 fw-bold w-100">{{ questionText }}</span>
|
||||
<span class="fs-5 fw-bold w-100" :class="this.buttonType === 'radio' ? 'text-start' : 'text-center'">{{ questionText }}</span>
|
||||
</div>
|
||||
<div class="w-100 d-flex justify-content-center">
|
||||
<fieldset class="w-100" :class="getFieldSetClasses" :role="isMultiSelect ? 'group' : 'radiogroup'" :aria-labelledby="groupName ? groupName + '-radio-group' : ''">
|
||||
|
|
|
|||
Loading…
Reference in a new issue