From 53bb095f8390c7d54dea5fc1fec52b568840dbee Mon Sep 17 00:00:00 2001 From: Marker689 Date: Sun, 10 May 2026 11:13:36 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86?= =?UTF-8?q?=D1=8B=20=E2=80=94=20overflow-x:auto=20=D1=82=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D0=BA=D0=BE=20=D0=BD=D0=B0=20=D0=BC=D0=BE=D0=B1=D0=B8=D0=BB?= =?UTF-8?q?=D0=BA=D0=B5=20(max-width:768px)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ guarddog_nexus/web/static/style.css | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a106a81..8c9ddce 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ data/ venv/ .agents/ skills-lock.json +.playwright-mcp/ +dashboard-*.png +scans-*.png diff --git a/guarddog_nexus/web/static/style.css b/guarddog_nexus/web/static/style.css index df4e25c..82e7695 100644 --- a/guarddog_nexus/web/static/style.css +++ b/guarddog_nexus/web/static/style.css @@ -35,11 +35,15 @@ /* ------------------------------------------------------------------ */ /* Tables */ /* ------------------------------------------------------------------ */ -table { font-size: 0.9rem; display: block; overflow-x: auto; } +table { font-size: 0.9rem; } table.compact { font-size: 0.82rem; } table.compact th, table.compact td { padding: 0.35rem 0.5rem; } +@media (max-width: 768px) { + table { display: block; overflow-x: auto; white-space: nowrap; } +} + /* ------------------------------------------------------------------ */ /* Scan info block (detail page) */ /* ------------------------------------------------------------------ */ @@ -263,8 +267,6 @@ th.sortable.active .sort-icon { opacity: 1; } .scan-info-grid { grid-template-columns: 1fr 1fr; } .filter-bar { flex-direction: column; align-items: stretch; } nav ul { flex-wrap: wrap; } - table, table.compact { font-size: 0.78rem; } - th, td { padding: 0.3rem 0.4rem; } } @media (max-width: 480px) {