mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-29 19:25:57 +00:00
centering auth page fix
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<span v-if="description" class="block text-xs leading-4 dark:text-gray-500 text-gray-500" v-html="description"></span>
|
||||
|
||||
<!--Input Description-->
|
||||
<span v-if="error" class="error-message">
|
||||
<span v-if="error" class="text-left text-xs text-red-600">
|
||||
{{ error }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div v-if="isVisible" class="w-full max-w-xl text-center">
|
||||
<div v-if="isVisible" class="w-full max-w-xl text-center m-auto py-6">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="flex items-center justify-center px-2.5 md:px-6">
|
||||
<div class="flex px-2.5 md:px-6">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
<!--Member list-->
|
||||
<ValidationProvider tag="div" mode="passive" name="Members" rules="required" v-slot="{ errors }">
|
||||
<AppInputText :title="$t('your_members')" :error="errors[0]" :is-last="true">
|
||||
<span v-if="errors[0]" class="error-message" style="margin-top: -5px">
|
||||
<span v-if="errors[0]" class="text-left text-xs text-red-600" style="margin-top: -5px">
|
||||
{{ $t('add_at_least_one_member') }}
|
||||
</span>
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<!--Member list-->
|
||||
<ValidationProvider tag="div" mode="passive" name="Members" v-slot="{ errors }">
|
||||
<label class="input-label">{{ $t('your_members') }}:</label>
|
||||
<span v-if="errors[0]" class="error-message" style="margin-top: -5px">{{
|
||||
<span v-if="errors[0]" class="text-left text-xs text-red-600" style="margin-top: -5px">{{
|
||||
$t('add_at_least_one_member')
|
||||
}}</span>
|
||||
<TeamList v-model="members" />
|
||||
|
||||
Reference in New Issue
Block a user