继续更新

This commit is contained in:
2025-10-15 11:11:23 +08:00
parent 7786e5f507
commit c147502b4d
89 changed files with 8116 additions and 2505 deletions

View File

@@ -9,6 +9,20 @@ const ProfileContainer = styled.div`
min-height: calc(100vh - 140px);
padding: 20px 0;
background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
opacity: 0;
transform: translateY(20px);
animation: pageEnter 0.8s ease-out forwards;
@keyframes pageEnter {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
`;
const Container = styled.div`
@@ -24,13 +38,13 @@ const PageHeader = styled.div`
const PageTitle = styled.h1`
color: white;
font-size: 32px;
font-size: 44.8px;
font-weight: 700;
margin-bottom: 10px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
@media (max-width: 768px) {
font-size: 24px;
font-size: 33.6px;
}
`;