style: update H5 global background, add noise overlay, and adjust login layout

This commit is contained in:
2026-06-02 18:03:27 +08:00
parent 31737286b9
commit 451cc3984a
3 changed files with 18 additions and 8 deletions

View File

@@ -99,13 +99,15 @@ function setLocale(code: string) {
height: 100%;
min-height: 100dvh;
overflow: hidden;
background: var(--bg-body);
background: transparent;
}
.header {
flex-shrink: 0;
display: flex; justify-content: space-between; align-items: center;
padding: 8px 12px;
background: linear-gradient(180deg, #222 0%, #1A1A1A 100%);
background: rgba(26, 26, 26, 0.65);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
z-index: 110;
}
@@ -149,7 +151,9 @@ function setLocale(code: string) {
}
.bottom-nav {
display: flex;
background: linear-gradient(0deg, #111 0%, #1A1A1A 100%);
background: rgba(17, 17, 17, 0.75);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-top: 1px solid var(--border);
box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
z-index: 100;