修复移动端注册按钮超出导航栏的问题
All checks were successful
continuous-integration/drone/push Build is passing

问题:
- 按钮高度设置得太大,超出了导航栏

解决:
- 减小按钮高度:
  - 767px:height 从 50px 改为 32px
  - 575px:height 从 48px 改为 32px
  - 360px:height 从 44px 改为 28px
- 按钮现在完全包含在导航栏内部
- 使用 flex 布局确保内容垂直居中

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yiqiu
2025-12-16 21:57:43 +08:00
parent 864ac65331
commit 717fb2b68a

View File

@@ -2549,7 +2549,7 @@ html {
padding: 0 10px !important;
font-size: 10px !important;
min-width: auto !important;
height: 50px !important;
height: 32px !important;
line-height: 1 !important;
display: flex !important;
align-items: center !important;
@@ -3099,7 +3099,7 @@ html {
padding: 0 10px !important;
font-size: 10px !important;
min-width: auto !important;
height: 48px !important;
height: 32px !important;
line-height: 1 !important;
display: flex !important;
align-items: center !important;
@@ -3594,7 +3594,7 @@ html {
padding: 0 8px !important;
font-size: 9px !important;
min-width: auto !important;
height: 44px !important;
height: 28px !important;
line-height: 1 !important;
display: flex !important;
align-items: center !important;