This commit is contained in:
aaron 2025-06-12 22:32:47 +08:00
parent e9d82e11cc
commit cf1d5c37fc
2 changed files with 3 additions and 24 deletions

View File

@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
image: tradus-web:1.4.3
image: tradus-web:1.4.4
container_name: tradus-web
ports:
- '6000:80'

View File

@ -1719,9 +1719,9 @@ body {
.desktop-user-info .user-info-box {
display: flex;
align-items: center;
gap: 0.75rem;
justify-content: space-between;
cursor: pointer;
padding: 0.5rem;
padding: 0.75rem;
border-radius: var(--border-radius);
transition: all 0.3s ease;
background-color: rgba(255, 255, 255, 0.05);
@ -1735,27 +1735,6 @@ body {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.desktop-user-info .user-avatar {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-accent) 0%, rgba(51, 85, 255, 0.8) 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
color: white;
font-weight: bold;
box-shadow: 0 3px 10px rgba(51, 85, 255, 0.25);
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.desktop-user-info .user-info-box:hover .user-avatar {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(51, 85, 255, 0.35);
}
.desktop-user-info .user-info-box:hover .user-nickname {
color: var(--color-accent);
}