diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-07 15:53:49 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-07 15:53:49 +0200 |
| commit | d2a74ea1a2965eb38609bb8029a41b45beab89ce (patch) | |
| tree | 47881b435bc3f2c83d031ee5ca34492bd19551a7 /src/components/range_input/range_input.vue | |
| parent | c34590c43983711152a843a2e36b991a5fe3bcdf (diff) | |
add .input class to all inputs
Diffstat (limited to 'src/components/range_input/range_input.vue')
| -rw-r--r-- | src/components/range_input/range_input.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/range_input/range_input.vue b/src/components/range_input/range_input.vue index 1e720105..c7648f72 100644 --- a/src/components/range_input/range_input.vue +++ b/src/components/range_input/range_input.vue @@ -14,7 +14,7 @@ v-if="typeof fallback !== 'undefined'" :id="name + '-o'" :aria-labelledby="name + '-label'" - class="opt visible-for-screenreader-only" + class="input opt visible-for-screenreader-only" type="checkbox" :checked="present" @change="$emit('update:modelValue', !present ? fallback : undefined)" @@ -27,7 +27,7 @@ /> <input :id="name" - class="input-number" + class="input input-number" type="range" :value="modelValue || fallback" :disabled="!present || disabled" @@ -38,7 +38,7 @@ > <input :id="name + '-numeric'" - class="input-number" + class="input input-number" type="number" :aria-labelledby="name + '-label'" :value="modelValue || fallback" |
