Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTara Rostami <132676256+TaraRostami@users.noreply.github.com>2023-12-21 20:08:44 +0300
committerGitHub <noreply@github.com>2023-12-21 20:08:44 +0300
commitbcfa47e2ad116074fa9695275309c03f9ba7ae90 (patch)
tree29ef90e7776274b7a639720251626118026bbd3b /web/html/login.html
parent77776e1a623e2223a75d9d588cc6dd96539724fa (diff)
Minor Fixes (#1421)
* Update login.html * Update custom.css * Update translate.fa_IR.toml * Update translate.fa_IR.toml * Update translate.en_US.toml
Diffstat (limited to 'web/html/login.html')
-rw-r--r--web/html/login.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/web/html/login.html b/web/html/login.html
index 3ec9da2e..34eff41c 100644
--- a/web/html/login.html
+++ b/web/html/login.html
@@ -114,6 +114,7 @@
position: relative;
border-radius: 25px;
width: 100%;
+ transition: all 0.3s cubic-bezier(.645,.045,.355,1);
}
.dark .wave-btn-bg {
color: #fff;
@@ -123,7 +124,6 @@
background-origin: border-box;
background-clip: padding-box, border-box;
background-size: 300%;
- transition: all 0.3s cubic-bezier(.645,.045,.355,1);
width: 100%;
z-index: 1;
}
@@ -291,8 +291,7 @@
<a-form-item>
<a-row justify="center" class="centered">
<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' }">
+ <a-button class="ant-btn-primary-login" type="primary" :loading="loading" @click="login" :icon="loading ? 'poweroff' : undefined">
[[ loading ? '' : '{{ i18n "login" }}' ]]
</a-button>
</div>