diff --git a/app/assets/css/tailwind.css b/app/assets/css/tailwind.css index c2cb68cf6..226f20114 100644 --- a/app/assets/css/tailwind.css +++ b/app/assets/css/tailwind.css @@ -3,7 +3,6 @@ @tailwind utilities; @layer base { - input[type='number']::-webkit-inner-spin-button, input[type='number']::-webkit-outer-spin-button { -webkit-appearance: none; @@ -52,13 +51,13 @@ html { align-items: flex-start; display: flex; - >label { + > label { flex: 0 0 auto; margin-right: 0.5rem; user-select: none; } - >div { + > div { flex: 1 1 auto; p { @@ -102,7 +101,7 @@ html { position: relative; vertical-align: top; - >* { + > * { margin-bottom: 0; } } diff --git a/app/components/auth/ForgotPasswordForm.vue b/app/components/auth/ForgotPasswordForm.vue index cc0b5bb6b..7fa590812 100644 --- a/app/components/auth/ForgotPasswordForm.vue +++ b/app/components/auth/ForgotPasswordForm.vue @@ -2,9 +2,9 @@ import type { FormSubmitEvent } from '#ui/types'; import { z } from 'zod'; import PasswordStrengthMeter from '~/components/auth/PasswordStrengthMeter.vue'; +import DataErrorBlock from '~/components/partials/data/DataErrorBlock.vue'; import { useNotificatorStore } from '~/store/notificator'; import { NotificationType } from '~~/gen/ts/resources/notifications/notifications'; -import DataErrorBlock from '../partials/data/DataErrorBlock.vue'; const props = defineProps<{ modelValue: boolean; diff --git a/app/components/auth/LoginForm.vue b/app/components/auth/LoginForm.vue index 1480c791d..983e98806 100644 --- a/app/components/auth/LoginForm.vue +++ b/app/components/auth/LoginForm.vue @@ -1,10 +1,10 @@