diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 0eb93720..d7717f49 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -6,8 +6,10 @@ :rules="loginRules" class="login-form" > -
- {{ $t("login.title") }} +
+ + {{ $t("login.title") }} +
@@ -217,6 +219,25 @@ onMounted(() => { overflow: hidden; background-color: #2d3a4b; + .title-wrap { + filter: contrast(30); + + .title { + letter-spacing: 8px; + animation: showup 3s forwards; + } + + @keyframes showup { + 0% { + letter-spacing: -20px; + } + + 100% { + letter-spacing: 8px; + } + } + } + .login-form { width: 520px; max-width: 100%;