From d451dcdc74d4b69507b358e09763aa4079fecaff Mon Sep 17 00:00:00 2001 From: vodofrede Date: Fri, 3 Jun 2022 14:24:28 +0200 Subject: [PATCH] added some borders to tables --- src/style/main.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/style/main.css b/src/style/main.css index fa27c8c..d553eb1 100644 --- a/src/style/main.css +++ b/src/style/main.css @@ -199,18 +199,19 @@ table thead { width: 100%; } -th { - border-bottom: 1px solid var(--border); -} - td, th { /* overflow: scroll; */ + border-bottom: 1px dotted var(--border); text-overflow: ellipsis; padding: 0.4rem; font-size: 0.9rem; } +th { + border-bottom: 1px solid var(--border); +} + thead, tbody { margin: 0;