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; + } +}