From 98264d42af18fb872bd3b6e8fd294703d96b3722 Mon Sep 17 00:00:00 2001 From: mguschin Date: Wed, 13 May 2026 21:03:57 +0300 Subject: [PATCH] fix: card clips overflowing table content to screen width Co-Authored-By: Claude Sonnet 4.6 --- web/static/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/static/style.css b/web/static/style.css index c530339..7cfa8a1 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -310,6 +310,12 @@ button.sm, a[role="button"].sm { /* Table */ .table-scroll { overflow-x: auto; + max-width: 100%; +} + +article.card { + overflow: hidden; + max-width: 100%; } table.align-middle td,