fix: 移除图片悬停动画并调整容器高度

移除图片的悬停缩放动画效果以提升性能
将容器高度从100vh改为100%并添加最小高度限制
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-09-25 16:35:39 +08:00
parent 08053e2211
commit a2ee6e8e1f
4 changed files with 12 additions and 12 deletions

View File

@@ -787,12 +787,12 @@
width: 240px;
height: 240px;
filter: drop-shadow(5px 5px 2.5px rgba(0, 0, 0, 0.35));
transition: all 0.3s ease-in-out;
// transition: all 0.3s ease-in-out;
border-radius: 10px;
&:hover {
transform: scale(1.05);
}
// &:hover {
// transform: scale(1.05);
// }
}
}
}