adminforth 2.4.0-next.209 → 2.4.0-next.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
overflow-x-hidden z-50 min-w-[350px] justify-center items-center md:inset-0 h-[calc(100%-1rem)] max-h-full">
|
|
28
28
|
<div class="relative p-4 w-full max-h-full max-w-[400px]">
|
|
29
29
|
<!-- Modal content -->
|
|
30
|
-
<div class="af-login-modal-content relative bg-lightLoginViewBackground rounded-lg shadow dark:bg-darkLoginViewBackground dark:shadow-black" >
|
|
30
|
+
<div class="af-login-modal-content relative bg-lightLoginViewBackground rounded-lg shadow dark:bg-darkLoginViewBackground dark:shadow-black" :class=" { 'rounded-b-none overflow-hidden': error } ">
|
|
31
31
|
<!-- Modal header -->
|
|
32
32
|
<div class="af-login-modal-header flex items-center justify-between flex-col p-4 md:p-5 border-b rounded-t dark:border-gray-600">
|
|
33
33
|
|
|
@@ -92,8 +92,6 @@
|
|
|
92
92
|
:meta="c.meta"
|
|
93
93
|
@update:disableLoginButton="setDisableLoginButton($event)"
|
|
94
94
|
/>
|
|
95
|
-
|
|
96
|
-
<ErrorMessage :error="error" />
|
|
97
95
|
|
|
98
96
|
<div v-if="loginPromptHTML"
|
|
99
97
|
class="flex items-center p-4 mb-4 text-sm text-lightLoginViewPromptText rounded-lg bg-lightLoginViewPromptBackground dark:bg-darkLoginViewPromptBackground dark:text-darkLoginViewPromptText" role="alert"
|
|
@@ -108,9 +106,9 @@
|
|
|
108
106
|
{{ $t('Login to your account') }}
|
|
109
107
|
</Button>
|
|
110
108
|
</form>
|
|
111
|
-
|
|
112
109
|
</div>
|
|
113
110
|
</div>
|
|
111
|
+
<ErrorMessage v-if="error" :error="error" class="absolute left-4 right-4 rounded-t-none mb-0 shadow px-9" />
|
|
114
112
|
</div>
|
|
115
113
|
</div>
|
|
116
114
|
|