彻底修复登录页面全覆盖 - 移除Login.vue容器,直接使用App.vue全屏背景

This commit is contained in:
AIGC Developer
2025-10-21 17:31:14 +08:00
parent 536a86112a
commit 23c62924bf
2 changed files with 10 additions and 31 deletions

View File

@@ -99,16 +99,11 @@ main.with-navbar {
padding-top: 0; /* NavBar 是 fixed 定位,不需要 padding-top */
}
/* 确保登录页面全屏显示 */
#app .login-page {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
min-height: 100vh;
/* 确保登录页面内容正确显示 */
#app[data-route="Login"] main {
position: relative;
z-index: 1;
background-attachment: fixed;
min-height: 100vh;
}
/* 登录页面特殊背景处理 - 参考Welcome页面样式 */