From f398f972932686be4f95ff05b5eab9dcff4fc1ab Mon Sep 17 00:00:00 2001 From: OoO Date: Wed, 13 May 2026 09:26:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=96=84=E7=88=AC=E8=9F=B2=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=89=8B=E6=A9=9F=E7=B5=B1=E8=A8=88=E5=8D=A1=E6=8E=92?= =?UTF-8?q?=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/static/css/page-settings.css | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/web/static/css/page-settings.css b/web/static/css/page-settings.css index e76183f..b7662c9 100644 --- a/web/static/css/page-settings.css +++ b/web/static/css/page-settings.css @@ -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; + } +}