From 501103a5e7489dd17e76f2462c46e3f97627c43f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 10 Aug 2026 15:53:40 +0545 Subject: [PATCH] enable fixed table layout This evenly distributes cells in tables regardless of their content which is what we want (almost?) all the time. It makes Who & News render better for sure, especially on smaller (mobile) devices. --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index cd59d15..43ee92e 100644 --- a/style.css +++ b/style.css @@ -62,6 +62,7 @@ a:active { table { border-spacing: 0px; border-collapse: separate; + table-layout: fixed; } table#homepage { -- 2.47.3