diff options
| author | Tara Rostami <132676256+TaraRostami@users.noreply.github.com> | 2023-12-17 18:16:50 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-17 18:16:50 +0300 |
| commit | 495bfb9683c7d78113f44cb106a245f9371df9d6 (patch) | |
| tree | c2fd9426abc3bee4f46a0101b0f2fac0ea4a1685 /web/html/login.html | |
| parent | 9b60b0fd458df0ee7547024f2bd0b16fd09b6a15 (diff) | |
Minor improvements in UI (#1399)
Diffstat (limited to 'web/html/login.html')
| -rw-r--r-- | web/html/login.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/login.html b/web/html/login.html index 8d377381..3ec9da2e 100644 --- a/web/html/login.html +++ b/web/html/login.html @@ -123,8 +123,9 @@ background-origin: border-box; background-clip: padding-box, border-box; background-size: 300%; - transition: all 0.5s ease; + transition: all 0.3s cubic-bezier(.645,.045,.355,1); width: 100%; + z-index: 1; } .dark .wave-btn-bg:hover {animation: wave-btn-tara 4s ease infinite;} .dark .wave-btn-bg-cl { @@ -289,7 +290,7 @@ </a-form-item> <a-form-item> <a-row justify="center" class="centered"> - <div class="wave-btn-bg wave-btn-bg-cl"> + <div class="wave-btn-bg wave-btn-bg-cl" :style="loading ? { width: '54px' } : { display: 'inline-block' }"> <a-button class="ant-btn-primary-login" type="primary" :loading="loading" @click="login" :icon="loading ? 'poweroff' : undefined" :style="loading ? { width: '50px' } : { display: 'inline-block' }"> [[ loading ? '' : '{{ i18n "login" }}' ]] |
