From b53a6cf8cae0a49609376ac82e17a24132abddba Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 10 Aug 2025 08:48:55 +0300 Subject: [PATCH] disable line break for the last cell (size) --- public/theme/default.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/theme/default.css b/public/theme/default.css index da8552c..a6f74bf 100644 --- a/public/theme/default.css +++ b/public/theme/default.css @@ -58,6 +58,10 @@ table th { padding: 4px 8px; } +table td:last-child { + white-space: nowrap; +} + table > thead > tr > th { text-align: left; }