diff --git a/frontend/components/Input/Input.vue b/frontend/components/Input/Input.vue index b0302c8b..0021d15c 100644 --- a/frontend/components/Input/Input.vue +++ b/frontend/components/Input/Input.vue @@ -67,7 +67,7 @@ const inputValidationProps = computed(() => { :id="label" :value="modelValue" :type="type" - class="w-full rounded border bg-transparent p-2 text-sm text-gray-900 ring-offset-2 transition focus:outline-none focus-visible:ring-2 dark:text-gray-100 dark:ring-offset-gray-800" + class="w-full rounded border bg-white p-2 text-sm text-gray-900 ring-offset-2 transition focus:outline-none focus-visible:ring-2 dark:bg-transparent dark:text-gray-100 dark:ring-offset-gray-800" :class="{ 'border-gray-400 ring-main-600 focus:border-main-600': state != 'invalid', diff --git a/frontend/components/Input/Switch.vue b/frontend/components/Input/Switch.vue index 5562942b..971919a4 100644 --- a/frontend/components/Input/Switch.vue +++ b/frontend/components/Input/Switch.vue @@ -33,7 +33,10 @@ const handleEvent = (value: boolean) => > {{ props.label }} - + {{ props.description }} diff --git a/frontend/components/Table/RowExpanding.vue b/frontend/components/Table/RowExpanding.vue index a6a407ed..fa801f5c 100644 --- a/frontend/components/Table/RowExpanding.vue +++ b/frontend/components/Table/RowExpanding.vue @@ -1,8 +1,8 @@