From 759a16a460e0aebcb4dbc9421062f818067c9c55 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Tue, 30 May 2023 08:34:05 +0200 Subject: page.c: Apply max-width to table This will help users to read tables with long file names. --- page.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/page.c b/page.c index cb2bffb..cf04f9a 100644 --- a/page.c +++ b/page.c @@ -1331,6 +1331,10 @@ int page_style(struct http_response *const r) " justify-content: center;\n" " text-decoration: auto;\n" "}\n" + "table\n" + "{\n" + " max-width: 50%;\n" + "}\n" "tr:nth-child(even)\n" "{\n" " background-color: lightgray;\n" -- cgit v1.2.3