add .input class to all inputs

This commit is contained in:
Henry Jameson 2024-02-07 15:53:49 +02:00
commit d2a74ea1a2
41 changed files with 108 additions and 98 deletions

View file

@ -39,10 +39,11 @@
:aria-checked="choices[index]"
@click="activateOption(index)"
>
<!-- TODO: USE CHECKBOX -->
<input
v-if="poll.multiple"
type="checkbox"
class="poll-checkbox"
class="input poll-checkbox"
:disabled="loading"
:value="index"
>
@ -51,6 +52,7 @@
type="radio"
:disabled="loading"
:value="index"
class="input"
>
<label class="option-vote">
<RichContent