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

@ -29,7 +29,7 @@
<label for="path">{{ $t('settings.url') }}</label>
<input
:id="path"
class="string-input"
class="input string-input"
:disabled="shouldBeDisabled"
:value="realDraftMode ? draft : state"
@change="update"

View file

@ -17,7 +17,7 @@
</label>
<input
:id="path"
class="number-input"
class="input number-input"
type="number"
:step="step || 1"
:disabled="shouldBeDisabled"

View file

@ -11,7 +11,7 @@
</label>
<input
:id="path"
class="number-input"
class="input number-input"
type="number"
step="1"
:disabled="disabled"

View file

@ -17,7 +17,7 @@
</label>
<input
:id="path"
class="string-input"
class="input string-input"
:disabled="shouldBeDisabled"
:value="realDraftMode ? draft : state"
@change="update"