From 68ff2ae8adc02a8ed557e94aba32a3b49f542b80 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Sat, 30 Dec 2023 09:17:47 +0100 Subject: [PATCH] Set table borders to 1px --- nummi/main/static/main/css/table.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nummi/main/static/main/css/table.css b/nummi/main/static/main/css/table.css index c064e05..9aaeace 100644 --- a/nummi/main/static/main/css/table.css +++ b/nummi/main/static/main/css/table.css @@ -6,7 +6,7 @@ table { border-collapse: collapse; } table.more tbody:last-child tr:last-child { - border-bottom: 0.1rem dashed var(--gray); + border-bottom: 1px dashed var(--gray); } table.full-width { width: 100%; @@ -21,7 +21,7 @@ table col.icon { width: 1ch; } tr { - border: 0.1rem solid var(--gray); + border: 1px solid var(--gray); height: 2rem; line-height: 2rem; }