Files
omniai-web/src/styles/pages/profile.css
T

34 lines
721 B
CSS
Raw Normal View History

2026-06-02 12:38:01 +08:00
/* Profile page rules move here as they are retired from legacy-pages.css. */
/* ── 代表作滚动容器:固定3列,刚好显示9个(3行),超出可滚动,隐藏滚动条 ── */
.profile-page__works-scroll {
max-height: 390px;
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.profile-page__works-scroll::-webkit-scrollbar {
display: none;
}
.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;
}
}