chore: re-upload current web project code

This commit is contained in:
2026-06-05 16:08:47 +08:00
parent c113d82844
commit aebe0ff827
20 changed files with 806 additions and 2488 deletions
+5 -21
View File
@@ -2,32 +2,16 @@
/* ── 代表作滚动容器:固定3列,刚好显示9个(3行),超出可滚动,隐藏滚动条 ── */
.profile-page__works-scroll {
max-height: 390px;
max-height: 390px; /* 3行卡片:3 × 120(min-height) + 2 × 10(gap) = 380px,留10px余量 */
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
}
.profile-page__works-scroll::-webkit-scrollbar {
display: none;
display: none; /* Chrome/Safari/Edge */
}
.profile-page__works-scroll .profile-page__list-grid {
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
.profile-page,
.auth-page,
.settings-page {
padding: 16px 16px 80px;
}
}
@media (max-width: 560px) {
.profile-page,
.auth-page,
.settings-page {
padding: 12px 10px 80px;
}
grid-template-columns: repeat(3, 1fr); /* 固定3列,刚好3×3=9个可见 */
}