改善爬蟲管理手機統計卡排版

This commit is contained in:
OoO
2026-05-13 09:26:21 +08:00
parent 44eb36992e
commit f398f97293

View File

@@ -478,3 +478,42 @@
margin-top: var(--momo-space-2);
color: var(--momo-text-secondary);
}
@media (max-width: 768px) {
.momo-app .stats-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
margin-bottom: var(--momo-space-4);
}
.momo-app .stats-grid .stat-card {
min-height: 96px;
padding: 12px;
}
.momo-app .stats-grid .stat-icon {
width: 30px;
height: 30px;
margin-bottom: 9px;
font-size: 14px;
opacity: 1 !important;
}
.momo-app .stats-grid .stat-card .stat-number {
margin-bottom: 5px;
font-size: 1.35rem !important;
}
.momo-app .stats-grid .stat-label {
font-size: 0.68rem;
line-height: 1.2;
letter-spacing: 0;
text-transform: none;
}
}
@media (max-width: 360px) {
.momo-app .stats-grid {
grid-template-columns: 1fr;
}
}